/* Background Color */
body.login {
    background-color: #f0f2f5;
}

/* Form Box Styling */
.login form {
    background: #ffffff;
    border: 1px solid #e1e4e8;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 8px;
    padding: 40px;
}

/* Input Fields */
.login form .input, .login form input[type=checkbox] {
    background: #fafafa;
    border: 1px solid #ddd;
    box-shadow: none;
    border-radius: 4px;
    padding: 10px;
    font-size: 16px;
}

/* The Login Button */
.wp-core-ui .button-primary {
    background: #000000; /* Your Brand Color Here */
    border-color: #000000;
    box-shadow: none;
    text-shadow: none;
    border-radius: 4px;
    height: 40px;
    font-weight: 600;
    transition: 0.3s;
}

.wp-core-ui .button-primary:hover {
    background: #333333; /* Darker Shade */
    transform: translateY(-1px);
}