body.login {
    background-color: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

#login {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 400px;
}

.login form {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: none;
    padding: 40px;
}

.login label {
    color: #333;
    font-weight: 600;
}

.login input[type="text"],
.login input[type="password"],
.login input[type="email"] {
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fafafa;
    box-shadow: none;
    width: 100%;
    padding: 10px;
    margin-top: 5px;
}

.login input[type="text"]:focus,
.login input[type="password"]:focus {
    border-color: #007cba;
    box-shadow: 0 0 0 1px #007cba;
}

.wp-core-ui .button-primary {
    width: 100%;
    background: #007cba;
    border-color: #007cba;
    text-shadow: none;
    box-shadow: none;
    border-radius: 4px;
    height: 40px;
    line-height: 38px;
    font-size: 16px;
    margin-top: 20px;
}

.wp-core-ui .button-primary:hover {
    background: #006ba1;
    border-color: #006ba1;
}

.login h1 a {
    background-image: none !important;
    width: auto;
    height: auto;
    text-indent: 0;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    pointer-events: none; /* Disable link */
}

.login h1 a::before {
    content: "Secure Login"; /* Replace logo with text */
}

/* Hide extra links for cleaner look */
#nav, #backtoblog {
    text-align: center;
    padding-top: 20px;
}

#nav a, #backtoblog a {
    color: #999;
}

#nav a:hover, #backtoblog a:hover {
    color: #007cba;
}
