/* Main Page Background */
body.login {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* The Login Container */
#login {
    width: 360px;
    padding: 0;
    margin: auto;
    position: relative;
    top: -50px; /* Slight offset to center visually */
}

/* The Logo */
.login h1 a {
    background-image: url('/app/themes/rundlemall/assets/img/rmma-logo.svg') !important; /* path to your logo */
    background-size: contain !important;
    width: 100%;
    height: 80px;
    margin-bottom: 20px;
}

/* The Form Card */
.login form {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: none;
    padding: 40px 30px;
    overflow: hidden;
}

/* Input Fields */
.login form .input,
.login input[type="text"] {
    background: #f7f9fc;
    border: 2px solid #eef1f5;
    border-radius: 6px;
    box-shadow: none;
    font-size: 16px;
    padding: 12px 15px;
    margin-bottom: 20px;
    color: #333;
    transition: all 0.3s ease;
}

/* Input Focus State */
.login form .input:focus,
.login input[type="text"]:focus {
    border-color: #667eea;
    background: #fff;
    box-shadow: 0 0 0 1px #667eea;
}

/* Labels */
.login label {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* The Submit Button */
.wp-core-ui .button-primary {
    background: #667eea;
    border-color: #667eea;
    box-shadow: 0 4px 6px rgba(102, 126, 234, 0.3);
    text-shadow: none;
    color: #fff;
    width: 100%;
    height: 45px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    margin-top: 10px;
    transition: all 0.3s ease;
    float: none !important;
}

.wp-core-ui .button-primary:hover,
.wp-core-ui .button-primary:focus {
    background: #764ba2;
    border-color: #764ba2;
    transform: translateY(-1px);
    box-shadow: 0 6px 8px rgba(118, 75, 162, 0.3);
}

/* Bottom Links (Lost Password / Back to Site) */
.login #nav, 
.login #backtoblog {
    text-align: center;
    padding: 0;
    margin-top: 20px;
}

.login #nav a, 
.login #backtoblog a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.login #nav a:hover, 
.login #backtoblog a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

/* Hide the Language Switcher (optional) */
.language-switcher {
    display: none;
}