/* templates/static/css/login.css */
body {
    background-color: #020617; /* slate-950 */
    color: #f8fafc;
    margin: 0;
    padding: 0;
}

/* Main Container Card */
.login-card {
    background-color: #0f172a; /* slate-900 */
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-panel {
    background-color: transparent;
}

/* Input Styling */
.login-input {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
    color: white;
}

.login-input::placeholder {
    color: #64748b; /* slate-500 */
}

.login-input:focus {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: #ea580c; /* orange-600 */
    box-shadow: 0 0 0 2px rgba(234, 88, 12, 0.2);
    outline: none;
}

/* Button Styling */
.login-button {
    background-color: #ea580c; /* orange-600 */
    transition: all 0.3s ease;
}

.login-button:hover {
    background-color: #c2410c; /* orange-700 */
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.4);
}

/* Brand Panel (Right side) - Almost white with orange shades */
.brand-panel {
    background-color: #fffcf8; /* off-white warm */
    background-image:
        radial-gradient(circle at top right, rgba(234, 88, 12, 0.12) 0%, transparent 60%),
        radial-gradient(circle at bottom left, rgba(249, 115, 22, 0.08) 0%, transparent 60%);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}
