body.login {
    background: url('../img/proexakt_bg.png') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: #fff;
}

#login {
    background-color: rgba(0, 0, 0, 0.4); 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); 
    padding: 30px; 
    border-radius: 8px;
    width: 100%;
    max-width: 360px;
    box-sizing: border-box;
}

#loginform, #admin-email-confirm-form {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
}

#login h1 a {
    background-image: url('../img/ProExakt-Logo_final_2024_weiß.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 80px;
    margin: 0 auto 25px auto;
    display: block;
}

.login label {
    color: #fff;
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

.login form .input, 
.login form input[type="text"], 
.login form input[type="password"] { 
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #000;
    padding: 10px 12px;
    border-radius: 4px;
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
}

.login form .input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.login form .input:focus {
    border-color: #fff;
    box-shadow: 0 0 0 1px #fff;
    outline: none;
}

.wp-core-ui .button-primary, #admin-email-confirm-form .button-primary {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    box-shadow: none;
    text-shadow: none;
    width: 100%;
    padding: 10px;
    height: auto;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 4px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

#admin-email-confirm-form .button-primary {
    width: auto;
}

.wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
    background: rgba(255, 255, 255, 0.4);
    border-color: #fff;
    color: #fff;
}

.login #nav, .login #backtoblog {
    text-align: center;
    margin-top: 20px;
}

.login #nav a, .login #backtoblog a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.login #nav a:hover, .login #backtoblog a:hover {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
}

.login .message, .login #login_error {
    background: rgba(255, 255, 255, 0.9);
    border-left: 4px solid #fff;
    padding: 12px;
    margin-bottom: 15px;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    color: #333;
}

.login #nav a:hover, .login #backtoblog a:hover {
    text-decoration: underline;
}

.login form .forgetmenot label {
    color: #fff;
}