body {
    font-family: 'Outfit', sans-serif;
    background-color: #f3f4f6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e2e2e2 100%);
}
.login-wrapper {
    display: flex;
    width: 100%;
    max-width: 1000px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    margin: 20px;
}
.login-left {
    flex: 1;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
.login-left::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(232, 197, 115, 0.08) 0%, transparent 60%);
    transform: rotate(30deg);
}
.login-left h1 {
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    color: #e8c573;
}
.login-left p {
    font-size: 1.15rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    line-height: 1.6;
    color: #e2e8f0;
}
.login-right {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}
.brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    text-decoration: none;
    color: #1f2937;
}
.brand-logo img {
    height: 45px;
    width: auto;
}
.brand-logo span {
    font-size: 1.6rem;
    font-weight: 700;
}
.login-form .form-floating {
    margin-bottom: 24px;
}
.login-form .form-control {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 1rem 1.25rem;
    height: auto;
    font-size: 1rem;
    background-color: #f9fafb;
    transition: all 0.3s ease;
}
.login-form .form-control:focus {
    box-shadow: 0 0 0 4px rgba(232, 197, 115, 0.2);
    border-color: #e8c573;
    background-color: #ffffff;
}
.login-form label {
    padding: 1rem 1.25rem;
    color: #6b7280;
}
.password-toggle {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6b7280;
    z-index: 10;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
.password-toggle:hover {
    color: #e8c573;
}
.btn-login {
    background: linear-gradient(135deg, #e8c573 0%, #d4a94b 100%);
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #0f172a;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 10px;
}
.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(232, 197, 115, 0.3);
    color: #000000;
}
.forgot-pass {
    color: #c48c1e;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}
.forgot-pass:hover {
    color: #a37213;
}
.form-check-label {
    font-size: 0.95rem;
}
@media (max-width: 768px) {
    .login-wrapper {
        flex-direction: column;
        margin: 15px;
        border-radius: 20px;
    }
    .login-left {
        padding: 40px 30px;
        text-align: center;
        display: none !important;
    }
    .login-right {
        padding: 40px 30px;
    }
}
