/* Auth shared styles — extracted from your login page */
/* relies on :root variables already defined in assets/css/style.css */

.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--theme-bg-light, #F6F6F6);
    position: relative;
    padding: 80px 0;
}

.auth-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--box-shadow, 0 0 40px 5px rgb(0 0 0 / 5%));
    overflow: hidden;
    height: 100%;
}

.auth-left {
    background: linear-gradient(135deg, var(--theme-color, #FF7A7C), var(--theme-color2, #00ADB8));
    color: #fff;
    height: 100%;
    position: relative;
}

.auth-left .overlay-bubbles span {
    position: absolute;
    border-radius: 50%;
    opacity: .12;
    background: #fff;
    filter: blur(2px);
}

.auth-left .overlay-bubbles .b1 {
    width: 170px;
    height: 170px;
    top: -40px;
    right: -40px;
}

.auth-left .overlay-bubbles .b2 {
    width: 120px;
    height: 120px;
    bottom: -50px;
    left: -30px;
}

.auth-left .overlay-bubbles .b3 {
    width: 70px;
    height: 70px;
    top: 30%;
    left: 10%;
}

.brand-mini {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .2);
}

.auth-title {
    font-family: var(--heading-font, 'Ubuntu');
    color: #fff;
}

.form-label {
    color: var(--color-dark, #2C374B);
    font-weight: 500;
}

.form-control {
    border-color: var(--border-info-color, rgba(0, 0, 0, .08));
    height: 48px;
    border-radius: 10px;
}

.form-control:focus {
    border-color: var(--theme-color);
    box-shadow: 0 0 0 .2rem rgba(255, 122, 124, .20);
}

.input-icon {
    position: relative;
}

.input-icon .fa-solid,
.input-icon .fa-regular {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa3b2;
}

/* you set 24px; keeping same across pages */
.input-icon input {
    padding-left: 24px;
}

.toggle-password {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa3b2;
    cursor: pointer;
}

.btn-theme {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: #fff;
    border-radius: 10px;
    height: 48px;
    font-weight: 600;
}

.btn-theme:hover {
    filter: brightness(.95);
}

.link-theme {
    color: var(--theme-color2);
    text-decoration: none;
}

.link-theme:hover {
    text-decoration: underline;
}

.small-muted {
    color: #98a2b3;
    font-size: .9rem;
}

@media (max-width: 991.98px) {
    .auth-left {
        height: 280px;
    }

    .auth-section{
        padding: 35px 0px;
    }
}
