* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
}

.login-wrapper { display: flex; min-height: 100vh; }

/* Left Side - Promo Section */
.promo-section {
    flex: 1;
    background: linear-gradient(160deg, #FFF9F5 0%, #FFE8E5 30%, #F5E1EB 60%, #EDE4F3 100%);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #333;
    position: relative;
    overflow: hidden;
}

.promo-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,182,193,0.3) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.promo-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,218,185,0.4) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    border-radius: 50%;
}

.promo-content { position: relative; z-index: 1; max-width: 500px; }

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: transparent;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.promo-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #e07a5f 0%, #d4727a 50%, #c56c86 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-subtitle {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.promo-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Right Side - Login Form */
.form-section {
    flex: 1;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    z-index: 2;
}

.form-container { width: 100%; max-width: 420px; }

.form-header {
    text-align: center;
    margin-bottom: 35px;
}

.form-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.form-header p {
    color: #6c757d;
    font-size: 15px;
}

.form-group { margin-bottom: 20px; }

.form-control {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 15px;
    transition: all 0.3s;
    background: #f8f9fa;
}

.form-control::placeholder {
    color: #adb5bd;
}

.form-control:focus {
    border-color: #e07a5f;
    box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.1);
    background: white;
}

.forgot-link {
    display: block;
    text-align: right;
    color: #e07a5f;
    text-decoration: none;
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 20px;
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-login {
    background: linear-gradient(135deg, #e07a5f 0%, #d4727a 50%, #c56c86 100%);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(224, 122, 95, 0.3);
}

.divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #e0e0e0;
}

.divider span {
    background: white;
    padding: 0 15px;
    color: #6c757d;
    font-size: 14px;
    position: relative;
}

.social-login {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.btn-social {
    flex: 1;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-social:hover {
    background: #f8f9fa;
    border-color: #d0d0d0;
}

.btn-google { color: #db4437; }
.btn-facebook { color: #1877f2; }

.signup-link {
    text-align: center;
    font-size: 15px;
    color: #6c757d;
}

.signup-link a {
    color: #e07a5f;
    font-weight: 600;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}

.alert-danger {
    background: #fff5f5;
    border: 1px solid #fee;
    border-left: 4px solid #e74c3c;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #e74c3c;
}

.alert-success {
    background: #f0fdf4;
    border: 1px solid #dcfce7;
    border-left: 4px solid #22c55e;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #22c55e;
}

@media (max-width: 992px) {
    .login-wrapper { flex-direction: column; }
    .promo-section {
        padding: 40px 30px;
        min-height: 300px;
    }
    .promo-title { font-size: 36px; }
    .form-section { padding: 40px 20px; }
}

@media (max-width: 576px) {
    .promo-title { font-size: 28px; }
    .promo-section { padding: 30px 20px; }
    .social-login { flex-direction: column; }
}
