html,
body {
    height: 100%;
}



.form-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.form-auth {
    width: 100%;
    padding: 15px;
    margin: auto;
}

.form-signin {
    text-align: center;
    max-width: 420px;
}

.form-auth .brand-wrap {
    padding: 0.5rem 4rem;
    margin-left: 2rem;
    margin-right: 2rem;
    border: 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    transition: all .3s ease;
}

.form-auth .brand-wrap img {
    width: 100%;
    height: auto;
    max-width: 120px;
}

.card-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #2e9fd8, transparent);
    margin: .5rem 0;
    opacity: .4;
}

.form-card {
    padding: 1rem;
    border: 0;
    border-radius: 1rem;
    /* box-shadow: 1px 5px 24px 0 rgba(68,102,242,.05); */
    box-shadow: 0 32px 80px rgba(190, 190, 190, 0.5), 0 0 0 1px rgba(46, 159, 216, .2);
    margin-bottom: 30px;
    animation: cardIn .6s cubic-bezier(.22, .68, 0, 1.2) both;
    transition: all .3s ease;
}

@keyframes cardIn {
    0% {
        opacity: 0;
        transform: translateY(28px) scale(.97);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.form-auth .main-hd {
    letter-spacing: 1px;
    /* margin-bottom: 2.5rem; */
}

.form-auth .checkbox {
    text-align: left;
}

.form-auth .checkbox label {
    display: flex;
    gap: 0.2rem;
}

.form-auth .form-floating:focus-within {
    z-index: 2;
}

.form-auth .form-floating input[type="email"] {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.form-auth .form-floating input[type="password"] {
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}