/* General styles for the login page */
body.login {
    background: #f4f7f9;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Centering the login form */
#loginform {
    
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #d1d5db;
}

/* Styling the text fields */
#loginform input[type="text"],
#loginform input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease-in-out;
}

#loginform input[type="text"]:focus,
#loginform input[type="password"]:focus {
    border-color: #fcb900;
    outline: none;
}

/* Styling the login button */
#wp-submit {
    width: 100%;
    background: #fcb900;
    color: #ffffff;
    border: none;
    padding: 12px;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

#wp-submit:hover {
    background: #eab000;
}

/* Adjusting the WordPress logo */
.login h1 a {
    width: 100px !important;
    height: auto !important;
    background-size: contain !important;
    filter: drop-shadow(2px 4px 6px gray);
}
