* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'brick';
    src: url(./assets/fonts/Playgum.otf) format('truetype');
    font-display: swap;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-y: hidden; /* Evita el scroll horizontal */
  }

body {
    margin: 0;
    font-family: brick, Arial, sans-serif;
    background: linear-gradient(135deg, #667eea, #764ba2);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 350px;
}

.login-container h2 {
    margin-bottom: 1rem;
    color: #333;
}

.login-container input[type="password"] {
    width: 90%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

.login-container button {
    width: 90%;
    padding: 0.75rem;
    background-color: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-container button:hover {
    background-color: #5a67d8;
}

.tabs {
    background: rgba(0, 0, 0, 0.3);
    color: wheat;
    width: 100%;
    height: 2rem;
    position: fixed;
    bottom: 0;
    left: 0;
    /* Asegura que se alinee correctamente */
    display: -moz-box;
    /* Compatibilidad con navegadores antiguos */
    display: -webkit-box;
    display: flex;
    flex-flow: row nowrap;
    font-size: 2rem;
}

.tabSection {
    flex: 1;
    cursor: pointer;
    display: -moz-box;
    /* Compatibilidad con navegadores antiguos */
    display: -webkit-box;
    /* Compatibilidad con navegadores antiguos */
    display: flex;
    /* Comportamiento estándar */
    justify-content: center;
    align-items: center;
    position: relative;
}

.tabSection.active {
    color: #FFD700;
    font-weight: bold;
}

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

.container-section {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

a {
    font-size: 5rem;
    color: white;
    text-decoration: none;
}

.floating-text {
    position: absolute;
    top: 15%; /* Alinea el texto verticalmente al centro */
    left: 50%; /* Alinea el texto horizontalmente al centro */
    transform: translate(-50%, -50%); /* Ajusta el texto para que quede perfectamente centrado */
    font-size: 2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Añade sombra al texto para mayor visibilidad */
    font-weight: bold;
    z-index: 1; /* Asegura que el texto esté sobre la imagen */
    font-size: 6rem;
  }