/* === Background & Centering === */
body.login {
    /*     background: linear-gradient(135deg, #002846 0%, #1e1e2f 100%); */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Inter', sans-serif;
}

/* === Logo === */
.login h1 a {
    background-image: url('https://legal.fclcloud.com/wp-content/uploads/2025/11/Screenshot-2025-11-17-234513.png'); /* replace with your logo */
    background-size: contain;
    width: 200px;
    height: 80px;
    display: block;
    margin: 0 auto 20px auto;
    text-indent: -9999px;
}

/* === Login Form Container === */
#login {
    background: #ffffff;
         padding: 32px 20px 20px 20px;
    border-radius: 16px;
    /* box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25); */
    /* width: 380px; */
    max-width: 90%;
box-shadow: 0 0px 4px rgba(0, 0, 0, 0.25);
}

#loginform{
    border: none !important;
    box-shadow: none !important;
    padding: 0px 8px 8px 8px !important;
}

/* === Form Inputs === */
#loginform .input, #loginform input[type="password"] {
    background: #f5f7fa;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 12px 14px;
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
}

#loginform .input:focus, #loginform input[type="password"]:focus {
    border-color: #d6003d;
    box-shadow: 0 0 0 3px rgba(214, 0, 61, 0.15);
    outline: none;
}

/* === Password Eye Button === */
.wp-hide-pw {
    background: none;
    border: none;
    color: #002846;
    cursor: pointer;
}

/* === Submit Button === */
#wp-submit {
    background: #d6003d;
    border: none;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    padding: 6px;
    margin-top: 24px;
    border-radius: 10px;
    width: 100%;
    transition: all 0.2s ease-in-out;
}

#wp-submit:hover {
    background: #b50036;
    box-shadow: 0 6px 18px rgba(214, 0, 61, 0.4);
}

/* === Remember Me Checkbox === */
.forgetmenot input[type="checkbox"] {
    accent-color: #d6003d;
}

/* === Links === */
#nav a, #backtoblog a {
    color: #002846;
    text-decoration: none;
    transition: all 0.2s;
}

#nav a:hover, #backtoblog a:hover {
    color: #d6003d;
    text-decoration: underline;
}

/* === Login Notice === */
#login-message {
    background: #eaf4ff;
    border-left: 4px solid #002846;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #1e1e2f;
}

/* === Password Caps Warning === */
.caps-warning {
    background: #fff0f0;
    border-left: 4px solid #d6003d;
    padding: 8px 12px;
    border-radius: 6px;
    margin-top: 8px;
}

/* === Smooth Animations === */
#loginform input, #wp-submit, .wp-hide-pw {
    transition: all 0.25s ease;
}
