/*
 * Artist AMP Portal - Login Background Fix
 * Targets the correct classes from login.html
 */

/* Overall page background */
body {
    background-color: #2B2D31 !important;
}

/* Split screen container */
.split-screen-container {
    background-color: #2B2D31 !important;
}

/* Right side panel (where the login form is) */
.right-pane {
    background-color: #2B2D31 !important;
}

/* Login form container - NO BORDER, same background as right-pane, WIDER */
.right-pane .login-container,
.right-pane .login-form-container,
.login-container,
.login-form-container {
    background-color: #2B2D31 !important;
    border: none !important;
    max-width: 400px !important;
    width: 100% !important;
}

/* Input fields - dark theme */
input[type="email"],
input[type="password"] {
    background-color: #1E1F22 !important;
    border: 1px solid #3F4147 !important;
    color: #FFFFFF !important;
}

/* Labels - light gray text */
label {
    color: #B5BAC1 !important;
}

/* Headings - white text */
h1 {
    color: #FFFFFF !important;
}

/* Subtitle text */
.subtitle {
    color: #B5BAC1 !important;
}
