/* Premium Beauty SaaS Login Styles */
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--beauty-font-body), sans-serif;
    background-color: var(--beauty-bg);
}

.beauty-login-body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #FDF2F8;
    /* Soft pearl pink */
    overflow: hidden;
}

.beauty-login-wrapper {
    display: flex;
    width: 1000px;
    height: 600px;
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(236, 72, 153, 0.15);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

/* LEFT PANE - Visuals */
.beauty-login-left {
    flex: 1;
    background: linear-gradient(135deg, #FF9A9E 0%, #FECFEF 99%, #FECFEF 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    color: #FFFFFF;
    overflow: hidden;
}

/* Glassmorphism decorative circles */
.beauty-login-left::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(10px);
}

.beauty-login-left::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -50px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.05));
    backdrop-filter: blur(10px);
}

.left-content {
    position: relative;
    z-index: 2;
}

.left-content h1 {
    font-family: var(--beauty-font-heading), serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.left-content .sub-headline {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-size: 15px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.feature-list li i {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 12px;
}

/* RIGHT PANE - Form */
.beauty-login-right {
    flex: 1;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.login-form-container {
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
}

.login-form-container h2 {
    font-family: var(--beauty-font-heading);
    color: var(--beauty-text-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 0;
}

.login-form-container .subtitle {
    color: var(--beauty-text-muted);
    font-size: 14px;
    margin-bottom: 32px;
}

/* Form Groups & Inputs */
.login-form-container .form-group {
    margin-bottom: 20px;
}

.login-form-container .form-control {
    border-radius: 8px !important;
    border: 1px solid #E5E7EB;
    background: #F9FAFB;
    padding: 12px 16px !important;
    height: auto !important;
    font-size: 14px;
    color: #1F2937;
    transition: all 0.25s ease;
    box-shadow: none !important;
}

.login-form-container .form-control:focus {
    background: #FFFFFF;
    border-color: var(--beauty-primary) !important;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.15) !important;
}

.login-form-container .btn-login {
    background: linear-gradient(135deg, var(--beauty-primary) 0%, #db2777 100%);
    border: none;
    color: #fff;
    width: 100%;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.25);
}

.login-form-container .btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(236, 72, 153, 0.35);
}

/* Captcha row */
.captcha-row {
    display: flex;
    gap: 12px;
}

.captcha-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.captcha-row .captcha-img {
    width: 110px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #E5E7EB;
    transition: all 0.2s ease;
}

.captcha-row .captcha-img:hover {
    border-color: var(--beauty-primary);
}

/* Checkbox */
.beauty-checkbox {
    display: flex;
    align-items: center;
    margin-top: 16px;
    margin-bottom: 16px;
    cursor: pointer;
}

.beauty-checkbox input {
    display: none;
}

.beauty-checkbox .check-indicator {
    width: 16px;
    height: 16px;
    border: 1px solid #D1D5DB;
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    transition: all 0.2s ease;
}

.beauty-checkbox input:checked+.check-indicator {
    background: var(--beauty-primary);
    border-color: var(--beauty-primary);
}

.beauty-checkbox input:checked+.check-indicator::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.beauty-checkbox .check-label {
    font-size: 13px;
    color: var(--beauty-text-soft);
}

.signup-footer {
    position: absolute;
    bottom: 24px;
    width: 100%;
    text-align: center;
    color: var(--beauty-text-muted);
    font-size: 12px;
}

/* Responsive */
@media screen and (max-width: 900px) {
    .beauty-login-wrapper {
        width: 90%;
        max-width: 450px;
        flex-direction: column;
        height: auto;
    }

    .beauty-login-left {
        display: none;
        /* Hide on small screens to keep it clean */
    }

    .beauty-login-right {
        padding: 40px;
    }
}