/* Custom Login Page Styles */
body.login {
    background-color: #121212;
    /* Dark background */
    color: #fff;
}

body.login div#login h1 a {
    background-image: url('../../images/favicon-custom.png');
    /* Adjust path to actual logo */
    background-size: contain;
    width: 320px;
    height: 80px;
    padding-bottom: 30px;
}

body.login form {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

body.login label {
    color: #ccc;
}

body.login input[type="text"],
body.login input[type="password"] {
    background: #2a2a2a;
    border: 1px solid #444;
    color: #fff;
    border-radius: 4px;
}

body.login input[type="text"]:focus,
body.login input[type="password"]:focus {
    border-color: #ff9800;
    box-shadow: 0 0 0 1px #ff9800;
}

body.login .button-primary {
    background: #ff9800 !important;
    border-color: #ff9800 !important;
    color: #fff !important;
    text-shadow: none !important;
    box-shadow: none !important;
    border-radius: 4px !important;
    transition: 0.3s;
}

body.login .button-primary:hover {
    background: #e68900 !important;
}

.login #nav a,
.login #backtoblog a {
    color: #888 !important;
    transition: 0.3s;
}

.login #nav a:hover,
.login #backtoblog a:hover {
    color: #ff9800 !important;
}

.login .message,
.login #login_error,
.login .success,
.login .notice {
    color: #000c !important;
}