/* Configuración general */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* Fondo de la pantalla */
body {
    min-height: 100vh;
    background: linear-gradient(135deg, #e8f5e9, #ffffff);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contenedor principal */
.contenedor {
    width: 400px;
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.15);
    text-align: center;
}

/* Logo */
.contenedor-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.contenedor-flex img {
    width: 240px;
    height: 60px;
    object-fit: contain;
}

/* Sección de botones */
.login h2 {
    color: #0b1c62;
    font-size: 24px;
    margin-bottom: 35px;
    font-weight: 600;
}

/* Botones */
.login button {
    width: 100%;
    padding: 15px;
    margin-bottom: 18px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Botón generar turno */
.login button:first-of-type {
    background-color: #01011c;
    color: white;
}


.login button:first-of-type:hover {
    background-color: #01011c;
    transform: translateY(-2px);
}



/* Botón cancelar turno */
.login button:last-of-type {
    background-color: #01011c;
    color: white;
}



.login button:last-of-type:hover {
    background-color: #01011c;
    transform: translateY(-2px);
}

/* Adaptación para celulares */
@media(max-width:500px){

    .contenedor{
        width: 90%;
        padding: 25px;
    }

    .login h2{
        font-size: 21px;
    }
}

/* Contenedor general */
.contenedor-principal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Logo separado */
.logo {
    margin-bottom: 25px;
}

.logo img {
    width: 240px;
    height: 60px;
    object-fit: contain;
}

/* Tarjeta de botones */
.contenedor {
    width: 400px;
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.15);
    text-align: center;

}

.boton-admin{
    position:absolute;
    top:20px;
    right:20px;
    text-decoration:none;
    color: #01011c;
    padding:10px 20px; 
    border-radius:8px;
}