/* auth.css */

/* Custom overrides for WP Auth Forms */
#blandford-login-form .login-username,
#blandford-login-form .login-password,
#blandford-lostpassword-form p,
#blandford-resetpassword-form p {
    margin-bottom: 1rem;
}

#blandford-login-form label,
#blandford-lostpassword-form label,
#blandford-resetpassword-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151; /* gray-700 */
    margin-bottom: 0.5rem;
}

#blandford-login-form input[type="text"],
#blandford-login-form input[type="password"],
#blandford-lostpassword-form input[type="text"],
#blandford-resetpassword-form input[type="password"] {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #4b5563; /* gray-600 */
    background-color: #f9fafb; /* gray-50 */
    background-clip: padding-box;
    border: 1px solid #d1d5db; /* gray-300 */
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#blandford-login-form input[type="text"]:focus,
#blandford-login-form input[type="password"]:focus,
#blandford-lostpassword-form input[type="text"]:focus,
#blandford-resetpassword-form input[type="password"]:focus {
    border-color: #b8944f;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(184, 148, 79, 0.2);
}

#blandford-login-form .login-remember {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}
#blandford-login-form .login-remember label {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#blandford-login-form .login-submit,
#blandford-lostpassword-form .login-submit,
#blandford-resetpassword-form .login-submit {
    margin-top: 1.5rem;
}

#blandford-lostpassword-form .login-submit,
#blandford-resetpassword-form .login-submit {
    margin-bottom: 0;
}

#blandford-login-form input[type="submit"],
#blandford-lostpassword-form input[type="submit"],
#blandford-resetpassword-form input[type="submit"] {
    display: inline-block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    color: #ffffff;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: linear-gradient(to right, #1f3044, #111827);
    border: 1px solid transparent;
    border-radius: 0.5rem;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 14px 0 rgba(31, 48, 68, 0.25);
}

#blandford-login-form input[type="submit"]:hover,
#blandford-lostpassword-form input[type="submit"]:hover,
#blandford-resetpassword-form input[type="submit"]:hover {
    background-image: linear-gradient(to right, #111827, #000000);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 48, 68, 0.35);
}
