/* Contenedor Principal */
.login-page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    font-family: 'Roboto', sans-serif;
}

/* Títulos */
.login-header h1 {
    font-family: 'Trajan Pro', 'Cinzel', serif !important;
    color: #FF8A3B;
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 5px;
    text-align: center;
}

.login-header p {
    color: #B1957B;
    font-size: 1.1rem;
    margin-bottom: 40px;
    text-align: center;
}

/* Tarjeta de Login */
.login-card {
    width: 100%;
    max-width: 450px;
    background: linear-gradient(135deg, rgba(26, 15, 16, 0.8) 0%, rgba(18, 9, 9, 0.6) 100%);
    border: 1px solid rgba(215, 73, 33, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Campos de Formulario */
.form-group-custom {
    margin-bottom: 25px;
}

.form-group-custom label {
    display: block;
    color: #E6D6C6;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: #6b7280;
    font-size: 1rem;
}

.input-wrapper .toggle-password {
    left: auto;
    right: 15px;
    cursor: pointer;
    transition: color 0.3s;
}

.input-wrapper .toggle-password:hover {
    color: #FF8A3B;
}

.input-wrapper input {
    width: 100%;
    background: rgba(30, 35, 45, 0.6);
    border: 1px solid rgba(215, 73, 33, 0.1);
    border-radius: 8px;
    padding: 12px 15px 12px 45px;
    color: #E6D6C6;
    font-size: 1rem;
    transition: all 0.3s;
}

.input-wrapper input:focus {
    outline: none;
    border-color: rgba(215, 73, 33, 0.6);
    background: rgba(40, 45, 55, 0.8);
    box-shadow: 0 0 10px rgba(215, 73, 33, 0.1);
}

/* Opciones extras (Recordarme/Olvido) */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 0.85rem;
}

.remember-me {
    color: #B1957B;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.forgot-link {
    color: #D74921;
    text-decoration: none;
    font-weight: 600;
}

.forgot-link:hover {
    text-decoration: underline;
}

/* Botón Submit */
.btn-login-submit {
    width: 100%;
    background: linear-gradient(to right, #D74921, #FF8A3B);
    border: none;
    border-radius: 10px;
    padding: 15px;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(215, 73, 33, 0.3);
}

.btn-login-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(215, 73, 33, 0.5);
    filter: brightness(1.1);
}

/* Footer de la tarjeta */
.login-footer {
    text-align: center;
    margin-top: 30px;
    color: #B1957B;
    font-size: 0.9rem;
}

.login-footer a {
    color: #FF8A3B;
    font-weight: 700;
    text-decoration: none;
}