/* --------------------------------------------------------
   WP-Vanguard Login Page Styling (with logo)
   -------------------------------------------------------- */

body {
    background: #0f1115;
    margin: 0;
    font-family: Arial, sans-serif;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Logo */
.login-logo {
    text-align: center;
    margin-bottom: 25px;
}

.login-logo img {
    max-width: 140px;
    height: auto;
    filter: drop-shadow(0 0 6px rgba(0,0,0,0.8));
}

/* Login box */
.login-box {
    background: #1b1d24;
    padding: 40px 30px;
    border-radius: 10px;
    width: 360px;
    box-shadow: 0 0 18px rgba(0,0,0,0.5);
    border: 1px solid #2b2f38;
}

.login-box h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
}

/* Inputs */
.login-box .input {
    width: 100%;
    padding: 12px;
    background: #0f1115;
    border: 1px solid #2b2e35;
    border-radius: 6px;
    font-size: 15px;
    color: #e0e0e0;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.login-box .input:focus {
    border-color: #e2b400;
    outline: none;
}

/* Buttons */
.btn {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
}

.btn-primary {
    background: #e2b400;
    color: #000;
}

.btn-primary:hover {
    background: #ffcf00;
}

/* Error box */
.error-box {
    background: #7a1f1f;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 18px;
    color: #fff;
    text-align: center;
}

.login-footer {
    margin-top: 15px;
    text-align: center;
    color: #aaa;
    font-size: 14px;
}

.login-footer a {
    color: #e2b400;
    text-decoration: none;
}

.login-footer a:hover {
    text-decoration: underline;
}
