/* login.css - Versión optimizada */

body {
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Configuración de altura completa */
.login {
    min-height: 100vh;
}

/* Títulos - Negro y negrita */
.login-heading {
    font-weight: 800;
    color: #000000;
}

/* Ajustes del Formulario */
.form-floating input {
    border-radius: 8px;
    border: 1px solid #ced4da;
}

.form-floating input:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

/* Estilo del Botón Entrar */
.btn-login {
    font-size: 0.9rem;
    letter-spacing: 0.05rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background-color: #ffc107;
    border: none;
    color: #000;
    font-weight: bold;
    transition: all 0.2s;
}

.btn-login:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

/* Estilos del carrusel */
.carousel {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* Fondo semitransparente SOLO para el texto dentro de la imagen */
.carousel-caption {
    background: rgba(0, 0, 0, 0.6) !important;
    border-radius: 10px;
    padding: 12px;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.carousel-caption h5 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.carousel-caption p {
    font-size: 0.8rem;
    margin-bottom: 0;
}

/* Quitar padding en móvil */
.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

/* Alinear columnas */
.row.g-0 {
    min-height: 100vh;
}

.col-md-8.col-lg-6 {
    display: flex;
    align-items: center;
}

.col-md-4.col-lg-6 {
    display: flex;
    align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-item img {
        height: 300px;
    }
    
    .carousel-caption {
        padding: 8px;
        bottom: 15px;
    }
    
    .carousel-caption h5 {
        font-size: 0.9rem;
    }
    
    .carousel-caption p {
        font-size: 0.7rem;
    }
}