/* normalkost-auth.css */

.normalkost-auth-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.normalkost-auth-form, #normalkost_login_form {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    
    .login-username #user_login {
        width: auto !important;
    }
}

.normalkost-auth-form h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.normalkost-auth-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.normalkost-auth-form input[type="text"],
.normalkost-auth-form input[type="email"],
.normalkost-auth-form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.normalkost-auth-form input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #84BE38;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.normalkost-auth-form input[type="submit"]:hover {
    background-color: #84BE38;
}

.register-link {
    margin-top: 10px;
}

.lost-password-link {
    text-align: center;
}

@media screen and (max-width: 768px) { 
    .login-username, 
    .login-password, 
    .login-remember, 
    .normalkost-auth-form {
        font-size: 12px;
    }
}


@media screen and (max-width: 480px) { 
    .login-username, 
    .login-password, 
    .login-remember, 
    .normalkost-auth-form {
        font-size: 12px;
    }
}