html,
body {
    height: 100%;
    margin: 0;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1rem;
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
}

.auth-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    display: flex;
    width: 100%;
    max-width: 900px;
    min-height: 540px;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .25);
}

.auth-side {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2.5rem;
    color: #fff;
    background: linear-gradient(160deg, #0d6efd 0%, #6610f2 100%);
}

.auth-side-dark {
    background: linear-gradient(160deg, #0d6efd 0%, #010725 100%);
}

.auth-side .logo-badge {
    width: 84px;
    height: 84px;
    border-radius: .75rem;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .75rem;
}

.auth-side .logo-badge img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.auth-form-side {
    flex: 1 1 55%;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-form-side .form-control,
.auth-form-side .input-group-text {
    background-color: #f8f9fa;
    border-color: #e9ecef;
}

.auth-form-side .form-control:focus {
    background-color: #fff;
    box-shadow: none;
    border-color: #0d6efd;
}

.auth-form-side .input-group:focus-within .input-group-text {
    border-color: #0d6efd;
}

@media (max-width: 767.98px) {
    .auth-side {
        display: none;
    }

    .auth-card {
        max-width: 440px;
        min-height: auto;
    }
}

.auth-card-single {
    width: 100%;
    max-width: 480px;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .25);
    padding: 3rem 2.5rem;
}
