/* ==========================================
LOGIN STYLE 
========================================== */

/* Font */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&display=swap');


/* ==========================================
   LOGIN LOGO (GR1P PERFORMANCE WHEELS LOGO)
========================================== */

body.login h1::before {
    display: none !important;
    content: none !important;
}

body.login h1.wp-login-logo a {
    background-image: url('https://gr1pwheelsph.com/wp-content/uploads/2025/09/GR1P-PERFORMANCE-WHEELS.jpg') !important;

    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;

    display: block !important;

    width: 100% !important;
    height: 65px !important;

    text-indent: -9999px !important;
    overflow: hidden !important;
    font-size: 0 !important;
}

/* Page Background + Font */
body.login {
    background: #ffffff !important;
    font-family: 'DM Sans', Inter, system-ui, -apple-system, sans-serif !important;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 100vh;
}

/* Login Container */
body.login #login {
    width: 100%;
    max-width: 440px;
    padding: 20px;
}

/* Login Card */
body.login #loginform {
    background: #ffffff !important;
    border: none !important;
    border-radius: 16px !important;
    padding: 32px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,.08) !important;
}
body.login .login-heading {
    margin-bottom: 24px;
}

body.login .login-heading h2 {
    margin: 0 0 4px;
    font-size: 32px;
    font-weight: 800;
    color: #111827;
}

body.login .login-heading p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

/* Labels */
body.login label {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #6b7280 !important;
}

/* Inputs */
body.login input[type="text"],
body.login input[type="password"] {
    height: 48px !important;
    border-radius: 10px !important;
    border: 1px solid #e5e7eb !important;
    background: #f9fafb !important;
    color: #111827 !important;
    font-size: 14px !important;
}

/* Focus */
body.login input[type="text"]:focus,
body.login input[type="password"]:focus {
    border-color: #303030 !important;
    box-shadow: 0 0 0 4px rgba(34, 34, 34, 0.15) !important;
}

/* Login Button */
body.login #wp-submit {
    width: 100% !important;
    height: 48px !important;
    border-radius: 12px !important;
    background: #303030 !important;
    border: none !important;
    color: #fff !important;
    font-weight: 600 !important;
}

body.login #wp-submit:hover {
    background: #000 !important;
    box-shadow: 0 8px 20px rgba(156,156,156,.35) !important;
}


body.login #backtoblog {
    text-align: center;
    margin-top: 16px;
}

body.login #backtoblog a {
    display: inline-block;
    background: #303030;
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all .2s ease;
}

body.login #backtoblog a:hover {
    background: #000;
    box-shadow: 0 8px 20px rgba(156,156,156,.35);
}


/* Links */
#login
body.login #nav a,
body.login #backtoblog a,
body.login .privacy-policy-link {
    color: #E6AB40 !important;
}

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

body.login .privacy-policy-page-link a,
body.login .terms-link {
    color: #E6AB40 !important;
    text-decoration: none;
    font-size: 13px;
}

body.login .privacy-policy-page-link a:hover,
body.login .terms-link:hover {
    text-decoration: underline;
}