/**
 * GF Manager - Login Page Styles
 */

body.login {
    background: linear-gradient(135deg, #0F0F1A 0%, #1A1A2E 100%);
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

#login {
    padding: 8% 0 0;
}

#login h1 a {
    background-image: none;
    background-color: linear-gradient(135deg, #8B5CF6, #EC4899);
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 50px;
}

#login h1 a::before {
    content: '🚀';
    font-size: 50px;
}

#loginform,
#registerform,
#lostpasswordform {
    background: #1A1A2E;
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    padding: 40px;
}

#loginform label,
#registerform label,
#lostpasswordform label {
    color: #A1A1AA;
    font-size: 14px;
}

#loginform input[type="text"],
#loginform input[type="password"],
#registerform input[type="text"],
#registerform input[type="email"],
#lostpasswordform input[type="text"] {
    background: #0F0F1A;
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    color: #FFFFFF;
    padding: 12px 15px;
    font-size: 16px;
    margin-top: 5px;
}

#loginform input[type="text"]:focus,
#loginform input[type="password"]:focus,
#registerform input[type="text"]:focus,
#registerform input[type="email"]:focus,
#lostpasswordform input[type="text"]:focus {
    border-color: #8B5CF6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
    outline: none;
}

#wp-submit {
    background: linear-gradient(135deg, #8B5CF6, #EC4899) !important;
    border: none !important;
    border-radius: 10px !important;
    color: white !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 12px 30px !important;
    text-shadow: none !important;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3) !important;
    transition: all 0.3s ease !important;
    height: auto !important;
}

#wp-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4) !important;
}

.login #nav,
.login #backtoblog {
    text-align: center;
}

.login #nav a,
.login #backtoblog a {
    color: #A1A1AA;
    transition: color 0.3s ease;
}

.login #nav a:hover,
.login #backtoblog a:hover {
    color: #8B5CF6;
}

.login .message,
.login .success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid #10B981;
    border-radius: 10px;
    color: #10B981;
}

.login #login_error {
    background: rgba(244, 63, 94, 0.15);
    border: 1px solid #F43F5E;
    border-radius: 10px;
    color: #F43F5E;
}

/* Remember me checkbox */
.login .forgetmenot {
    margin-top: 15px;
}

.login .forgetmenot label {
    color: #A1A1AA;
}

/* Privacy policy */
.login .privacy-policy-page-link {
    text-align: center;
    margin-top: 20px;
}

.login .privacy-policy-page-link a {
    color: #A1A1AA;
}

.login .privacy-policy-page-link a:hover {
    color: #8B5CF6;
}
