body {

    font-family: system-ui, -apple-system, sans-serif;
}

.login-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    z-index: 1;
}

.login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/1xbook.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.login-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1f2127ad;
    z-index: -1;
}

.login-card {
    max-width: 420px;
    margin: auto;
    margin-top: 40px;
    background: #2b2e36;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.form-control {
    background: #1f2127;
    border: none;
    color: #fff;
}

.form-control:focus {
    background: #1f2127;
    color: #fff;
    box-shadow: none;
    border: 1px solid #444;
}

.btn-red {
    background: #d91c1c;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
}

.btn-red:hover {
    background: #b51616;
}

.captcha-box {
    background: #d9d9d9;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.captcha-text {
    font-weight: bold;
    color: #000;
    letter-spacing: 2px;
    font-size: 18px;
}

.small-link {
    font-size: 13px;
    color: #ccc;
}

.small-link a {
    color: #ff3b3b;
    text-decoration: none;
}

.small-link a:hover {
    text-decoration: underline;
}

.eye-icon {
    position: absolute;
    right: 10px;
    top: 38px;
    cursor: pointer;
}

@media (max-width: 576px) {
    .login-card {
        margin-top: 20px;
        padding: 15px;
    }
}

.seo-hidden {
    display: none;
    visibility: hidden;
}