/* QMSPress Login Form Styles (for Standard wp_login_form) */

/* Container remains the same */
.qmspress-login-container {
    border-radius: 15px;
    box-sizing: border-box;
}

/* Titles remain the same */
.qmspress-login-title {
    text-align: center;
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
}

.qmspress-login-subtitle {
    text-align: center;
    margin-bottom: 25px;
    color: #666;
    font-size: 0.95em;
}

/* Style paragraphs within the standard login form */
.qmspress-login-container #loginform p {
    margin-bottom: 20px; /* Spacing between form rows */
}

/* Style labels within the standard login form */
.qmspress-login-container #loginform label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 600;
    font-size: 0.9em;
}

/* Style text and password inputs - apply the rounded look */
.qmspress-login-container #loginform input[type="text"],
.qmspress-login-container #loginform input[type="password"] {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ccc;
    border-radius: 25px; /* Rounder corners */
    box-sizing: border-box;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    margin-top: 0; /* Override potential WP default margin */
}

.qmspress-login-container #loginform input[type="text"]:focus,
.qmspress-login-container #loginform input[type="password"]:focus {
    border-color: #0073aa; /* WordPress blue */
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2); /* Subtle focus glow */
    outline: none; /* Remove default outline */
}

/* Style the 'Remember Me' checkbox and label */
.qmspress-login-container #loginform .login-remember label {
    display: inline-block; /* Keep label next to checkbox */
    font-weight: normal;
    font-size: 0.9em;
    color: #555;
}

.qmspress-login-container #loginform .login-remember input[type="checkbox"] {
    margin-right: 5px;
    vertical-align: middle;
    /* Add custom checkbox styling here if desired */
}

/* Style the submit button container */
.qmspress-login-container #loginform .login-submit {
     text-align: center;
     margin-top: 30px;
     border-top: none; /* Remove potential WP default border */
     padding: 0; /* Remove potential WP default padding */
}

/* Style the submit button itself - apply the rounded button look */
.qmspress-login-container #loginform #wp-submit {
    padding: 12px 35px;
    font-size: 1.1em;
    font-weight: bold;
    color: #fff;
    background-color: #0073aa; /* WordPress blue */
    border: none;
    border-radius: 25px; /* Rounder corners */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    display: inline-block;
    width: auto; /* Override potential WP default width */
    float: none; /* Override potential WP default float */
}

.qmspress-login-container #loginform #wp-submit:hover,
.qmspress-login-container #loginform #wp-submit:focus {
    background-color: #005177; /* Darker blue */
    transform: translateY(-1px); /* Slight lift effect */
    outline: none;
}

/* Style the custom 'Lost Password' link container */
.qmspress-lost-password {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9em;
}
.qmspress-lost-password a {
    color: #0073aa;
    text-decoration: none;
}
.qmspress-lost-password a:hover {
    text-decoration: underline;
}


/* Removed styles for .qmspress-loader and .qmspress-login-message as they are no longer used */


/* Responsive adjustments if needed */
@media (max-width: 480px) {
    .qmspress-login-container {
        margin: 20px 10px;
        padding: 20px;
    }
    .qmspress-login-title {
        font-size: 1.5em;
    }
    .qmspress-login-container #loginform #wp-submit { /* Target specific button */
        padding: 10px 25px;
        font-size: 1em;
    }
}