/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
*/
/* 
    Created on : 28 ene 2026, 09:37:52
    Author     : Leo_Web
*/

body {
    min-height: 100vh;
    background: #030b18;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', sans-serif;
}

.neu-card {
    background: #f4f2f2;
    width: 95%;
    max-width: 500px;
    padding: 35px;
    border-radius: 25px;
}

.neu-card h3 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    color: #030b18;
}

/* INPUTS */
.neu-input {
    background: #030b18;
    border: none;
    color: #fff;
    border-radius: 15px;
    padding: 12px;
     font-family: 'Helvetica Neue LT Std Roman'; 
}

.neu-input:focus {
    outline: none;
    color: black;
}

/* ICONOS */
.input-group-text {
    background: #030b18;
    border: none;
    color: white;
    border-radius: 15px 0 0 15px;
}

/* CHECKBOX */
.form-check-input {
    background-color: #4766ec;
    border: none;
}

.form-check-input:checked {
    background-color: #4766ec;
}

.form-check-input:checked {
    border-color: #4766ec;
}

/* BOTÓN */
.neu-btn {
    background: #4766ec;
    border: none;
    border-radius: 20px;
    padding: 12px;
    color: white;
    font-weight: 600;
}

.neu-btn:hover {
    
}

.neu-btn:active {
    box-shadow:
        inset 4px 4px 8px #141414,
        inset -4px -4px 8px #282828;
}

/* LINKS */
.forgot {
    color: #9fa8ff;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot:hover {
    text-decoration: underline;
}

/* PLACEHOLDER */
.neu-input::placeholder {
    color: #fff;
    opacity: 1;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* EFECTO AL HACER FOCUS */
.neu-input:focus::placeholder {
    color: #030b18;
    transform: translateX(4px);
}


label.error{
    display: none !important;
}
.FESForgot{
    color: #030b18;
     font-family: 'Helvetica Neue LT Std Roman';
     text-decoration: underline;
}
.FESLbl{
    font-family: 'Helvetica Neue LT Std Roman'; 
}