@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background-color: transparent;
}

.body {
    background-color: #f0f5f7;
}

/**/

.wrapper {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.container {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 20px;
    max-width: 440px;
    margin: 0 auto;
}

/**/

.auth {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.auth .logo {
    display: flex;
    justify-content: center;
}

.auth .logo img {
    height: 30px;
}

.auth .form {
    display: flex;
    flex-direction: column;
    grid-row-gap: 10px;
    margin-top: 10px;
}

.auth .form input {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    width: 100%;
    border-radius: 8px;
    background-color: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 15px 20px;
    outline: none;
}

.auth .form button {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #FFFFFF;
    text-transform: uppercase;
    width: 100%;
    border-radius: 8px;
    background-color: #0f1632;
    padding: 15px 20px;
    transition: 0.3s;
}

.auth .form button:hover {
    transform: scale(1.03);
}

.auth .buttonWrapper {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    padding: 10px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.auth .buttonWrapper .button {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    text-align: center;
    text-decoration: underline;
}

/**/

.error {
    margin-top: 10px;
}

.error ul {
    margin-left: 20px;
}

.error li {
    font-family: "Montserrat", sans-serif;
    color: red;
}
