/*
 * Custom Login Page Stylesheet
 */

body.login {
    background-color: #f1f1f1; /* Change the page background color */
    background-image: url('../images/login-background.jpg'); /* Optional: Add a background image */
    background-size: cover;
}

#login h1 a, .login h1 a {
    background-image: url('../images/careline-logo.png'); /* Replace with your own logo */
    height: 80px;      /* Set your logo's height */
    width: 320px;      /* Set your logo's width */
    background-size: contain;
    background-repeat: no-repeat;
    padding-bottom: 20px;
}

#loginform {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.login form .input, .login input[type="text"] {
    border-radius: 5px;
}

.wp-core-ui .button-primary {
    background: #0073aa; /* Change button background color */
    border-color: #006799; /* Change button border color */
    text-shadow: none;
    border-radius: 5px;
}

#nav, #backtoblog {
    text-align: center;
}

#nav a, #backtoblog a {
    color: #000000 !important; /* Changed to black */
    text-shadow: none; /* Removed the shadow which was for white text */
}

#nav a:hover, #backtoblog a:hover {
    color: #000000 !important;
}