/* Reset básico */

/* Overlay Loading */
.overlay-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 30, 66, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease-out;
}

.overlay-loading.hidden {
    opacity: 0;
    pointer-events: none;
    display: none;
}

.overlay-loader {
    width: 160px;
    height: 160px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow: hidden;
}

/* Contenedor principal */
.slider-container {
    display: flex;
    width: 100%;
    height: 100vh;
    position: relative;
}

/* SecciÃƒÂ³n del slider (80% del ancho) */
.slider-section {
    width: 80%;
    height: 100%;
    position: relative;
    background: #1a1a2e;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Slider */
.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Controles del slider */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

/* Botones de navegaciÃƒÂ³n */
.control-btn {
    background: none;
    border: none;
    color: #00a8ff;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: rgba(0, 168, 255, 0.1);
    transform: scale(1.1);
}

.control-btn svg {
    width: 24px;
    height: 24px;
}

/* Puntos indicadores */
.dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: #ffd700;
    border-color: #ffed4e;
    transform: scale(1.2);
}

.dot:hover {
    background: #999;
}

/* SecciÃ³n de contenido (20% del ancho) */
.content-section {
    width: 30%;
    height: 100%;
    background: #041e42;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0 0 0;
    justify-content: space-between;
}

.content-wrapper {
    text-align: center;
    max-width: 100%;
    padding-top: 40px;
}

.content-wrapper h2 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 24px;
}

.content-wrapper p {
    color: #dadada;
    line-height: 1.6;
    font-size: 14px;
}

.content-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Estilos para el tÃ­tulo de login */
.login-title {
    color: #fff;
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    margin-top: 50px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
}

/* Estilos para el texto de ayuda */
.login-hint {
    color: #fff;
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 20px;
    max-width: 100%;
}

/* Estilos para el saludo del usuario */
.user-greeting {
    text-align: center;
    margin-top: 80px;
}

.greeting-text {
    color: #fff;
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 8px;
}

.not-you-link {
    color: #00a8ff;
    text-decoration: none;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.not-you-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Contenedor del formulario */
.form-wrapper {
    margin-top: 40px;
    width: 100%;
    padding: 0 20px;
}

/* Estilos para el formulario de login */
.login-form {
    width: 80%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.input-group {
    margin-bottom: 20px;
}

.input-label {
    display: block;
    color: #fff;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: left;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.client-input {
    width: 100%;
    height: 52px;
    background: #fff;
    border: none;
    /* border-radius: 8px; */
    padding: 0 50px 0 20px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    color: #333;
    outline: none;
    box-sizing: border-box;
}

.client-input::placeholder {
    color: #999;
}

.toggle-visibility {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
}

.toggle-visibility:hover {
    color: #333;
}

.submit-btn {
    width: 100%;
    height: 56px;
    background: #d3d3d3;
    color: #666;
    /* border: none; */
    /* border-radius: 8px; */
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 24px;
}

.submit-btn:enabled {
    background: #007bff;
    color: #fff;
}

.submit-btn:enabled:hover {
    background: #0056b3;
}

.submit-btn:disabled {
    cursor: not-allowed;
    background: #d3d3d3;
    color: #666;
}

/* Estilos para el enlace de contraseña olvidada */
.forgot-password {
    margin-top: 15px;
    text-align: left;
}

.forgot-link {
    color: #00a8ff;
    text-decoration: none;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Estilos para el checkbox */
.checkbox-group {
    margin-top: 20px;
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    color: #fff;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}

.remember-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 18px;
    width: 18px;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 3px;
    margin-right: 10px;
    position: relative;
    flex-shrink: 0;
}

.checkbox-label:hover .checkmark {
    background-color: rgba(255, 255, 255, 0.1);
}

.remember-checkbox:checked ~ .checkmark {
    background-color: #00a8ff;
    border-color: #00a8ff;
}

.remember-checkbox:checked ~ .checkmark:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Estilos para el footer */
.footer {
    margin-top: auto;
    padding: 20px;
    text-align: center;
    width: 100%;
}

.footer-links {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-link {
    color: #00a8ff;
    text-decoration: none;
    font-family: 'Noto Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-separator {
    color: #fff;
    font-size: 12px;
}

.footer-copyright {
    color: #fff;
    font-family: 'Noto Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
}

/* Responsive para pantallas pequeÃƒÂ±as */
@media (max-width: 768px) {
    .slider-container {
        flex-direction: column;
    }
    
    .slider-section {
        width: 100%;
        height: 70%;
    }
    
    .content-section {
        width: 100%;
        height: 30%;
        padding: 20px;
    }
    
    .slider-controls {
        bottom: 20px;
        gap: 15px;
    }
    
    .control-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}
