.auth {
    min-height: calc(100vh - var(--gl-header-height) - var(--gl-footer-height));
}

.auth-card__wrapper {
    padding: 80px 0;
}

.auth-card {
    max-width: 440px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    background: #FFFFFF;
    padding: 35px 40px;
}

.auth-card__head {
    text-align: center;
}

.auth-card__head-icon {
    width: 44px;
    height: 44px;
    background: var(--gl-body-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    margin: 0 auto;
    margin-bottom: 12px;
}

.auth-card__head-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    color: #000000;
    margin: 0;
}

.auth-card__head-desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #665F5F;
    margin-top: 8px;
}

.auth-card__socials {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-direction: column;
}

.auth-card__content {
    margin-top: 20px;
}


.auth-card__group {
    margin-bottom: 20px;
}

.auth-card__group-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.auth-card__group label {
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.auth-card__group-flex .auth-card__group label {
    margin-bottom: 0;
}

.auth-card .btn {
    width: 100%;
}

.auth-card .btn-white {
    margin-top: 10px;
    color: #1641B1;
    font-size: 14px;
}


.auth-card__caption {
    max-width: 500px;
    display: block;
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
    line-height: 130%;
}

.auth-card__caption a {
    font-weight: 600;
    opacity: 1;
}

.auth-card__caption span {
    opacity: 80%;
}

@media (max-width: 768px) {
    .auth {
        background: white;
    }

    .auth-card__wrapper {
        padding: 0;
    }

    .auth-card {
        padding: 35px 0;
    }
}