@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
}

.container-auth {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.background__login {
    background: linear-gradient(180deg, rgba(34, 58, 158, 0.8) 0%, #223A9E 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

.card__auth-container {
    width: 75%;
    margin: 0 auto;
}

.card__auth-title h1 {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    letter-spacing: -0.03em;
    color: #121F3F;
    margin-top: 1.8em;
}

.card__auth-text p {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: -0.03em;
    color: #959FB3;
    margin-bottom: 2rem;
}

.card__auth-form-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.03em;
    color: #121F3F;
    padding-bottom: 0.3rem;
}

.card__auth-button button {
    width: 100%;
    height: 50px;
    background: #3454CF;
    box-shadow: 1px 3px 10px rgba(52, 84, 207, 0.3);
    border-radius: 10px;

    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: -0.03em;
    color: #FFFFFF;
}

.card__auth-button button:hover {
    color: #FFFFFF;
    background: #2946ba;
    box-shadow: 0px 4px 10px 2px rgba(52, 84, 207, 0.35);
}

.card__auth-form:nth-child(1) {
    margin-top: 0.5rem;
}

.card__auth-form:nth-child(2) {
    margin-top: 0.6rem;
}

.card__auth-form-input {
    /* width: 450px; */
    height: 45px;
    background: #FFFFFF;
    border: 0.5px solid rgba(149, 159, 179, 0.6);
    box-sizing: border-box;
    border-radius: 10px;
}

.card__auth-try {
    margin-top: 1rem;
}

.card__auth-try p {
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: -0.01em;
    color: #959FB3;
}

.card__auth-copyright {
    margin-top: 3.2rem;
}

.card__auth-copyright p {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: -0.03em;
    color: #959FB3;
}

.card__auth-try a {
    text-decoration: none;
    color: #3454CF;
}

.card__auth-try a:hover {
    text-decoration: underline;
}

.background__login-illustration img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

@media screen and (max-width: 991px) {

    .card__auth {
        margin-top: 3rem;
    }
    .card__auth-container {
        width: 100%;
        margin: 0 auto;
    }
    .card__precense {
        margin-top: 8rem !important;
    }
}