/* Custom WordPress Login Page Styles */

/* Background and body */
body.login {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Login container */
#login {
    width: 400px;
    padding: 5% 0 0;
}

/* Form containers */
#loginform, 
#registerform, 
#lostpasswordform {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: none;
}

/* Header styling */
.login h1 {
    text-align: center;
    margin-bottom: 20px;
}

.login h1 a {
    background-image: none !important;
    background-size: contain;
    background-position: center;
    width: auto;
    height: auto;
    text-decoration: none;
    color: white;
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 0;
    outline: none;
    text-indent: 0;
}

div#nsl-custom-login-form-main:before {
    content: "To access to QA Dashboard please login with Incsub Google Account using the button below";
}

/* Hide all input fields */

.user-pass-wrap, #loginform p, #login p {
    display: none;
}

/* Responsive design */
@media (max-width: 480px) {
    #login {
        width: 90%;
        margin: 20px auto;
    }
    
    #loginform, 
    #registerform, 
    #lostpasswordform {
        padding: 24px;
    }
    
    .login h1 a:before {
        font-size: 24px;
    }
}
