/* ===== FONDO GENERAL ===== */
body {
    background: #000;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
}

/* ===== CENTRADO ===== */
.login-wrapper {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== TARJETA ===== */
.login-card {
    width: 400px;
    background: #111;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.25);
}

.login-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;          /* ⭐ CENTRAR */
}

.login-subtitle {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 20px;
    text-align: center;          /* ⭐ CENTRAR */
}


/* ===== INPUTS ===== */
.login-input {
    background: #0c0c0c !important;
    border: 1px solid #333 !important;
    color: #fff !important;
    height: 45px;
}

.login-input::placeholder {
    color: #777 !important;
}

/* ===== PASSWORD TOGGLE ===== */
.password-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #bbb;
    font-size: 16px;
}

.toggle-password:hover {
    color: #fff;
}

/* ===== BOTÓN ===== */
.btn-login-submit {
    width: 100%;
    background: #ff0000;
    border: none;
    color: #fff;
    padding: 14px;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 6px;
    margin-top: 10px;
    cursor: pointer;
    font-weight: 600;
}

.btn-login-submit:hover {
    background: #cc0000;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
    .login-card {
        width: 90%;
        padding: 25px;
    }

    .login-title {
        font-size: 26px;
    }
}
