html{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* Aseguramos que el body ocupe toda la altura de la ventana */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Estilo para el header, si es necesario */
header {
    background-color: #f8f9fa; /* Estilo para el header */
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000; /* Asegura que el header quede sobre el iframe */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Agrega sombra si lo deseas */
}

/* Contenedor principal para el iframe */
.iframe-container {
    position: absolute;
    top: 60px; /* Altura del header, ajusta según tu diseño */
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

/* Asegura que el iframe ocupe todo el espacio disponible */
iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block; /* Elimina cualquier espacio debajo del iframe */
}

.login-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background-color: #dfdacb;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.8);
}

.login-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/patron.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3; /* Ajusta la opacidad aquí */
    z-index: -1; /* Coloca la imagen detrás del contenido */
    border-radius: 10px; /* Mantén los bordes redondeados */
}

.login-title {
    text-align: center;
    margin-bottom: 15px;
    margin-top: 10px;
}

.form-label {
    margin-top: 10px;
}

.btn-custom {
    width: 100%;
    margin-top: 20px;
    background-color: #442404 ;
    color: white;
}
.btn-custom:hover{
    background-color: #442404c8;
    color: white;
}
.btn-logout{
    background-color: #442404;
    color: white;
}
.btn-logout:hover{
    background-color: #442404c8;
    color: white;
}
h1,h2{
    color: #442404;
}

@media (max-width: 768px) {
    .h1, h1 {
        font-size: 1.5rem; 
    }
}
@media (max-width: 768px) {
    .btn-logout{
        font-size: 0.7rem; 
    }
}