/* Hace que el body y HTML ocupen toda la altura de la pantalla */
html,
body {
    font-family: Arial, sans-serif;
    /*text-align: center;*/
    margin: 0;
    padding: 0;
    display: flex;
    height: 100%;
    flex-direction: column;
}

/* Hace que .container crezca y empuje el footer hacia abajo */
.container {
    /*height: 100vh;*/
    flex: 1;
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    /* Si el contenido es corto, se centra */
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.texto-bienvenida {
    font-size: 18px;
}

.btn {
    margin-top: 40px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}


.aviso {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.checkbox {
    margin-top: 20px;
    text-align: center;
}


.formulario {
    text-align: left;
    max-width: 700px;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 10px;
}

.formulario label {
    display: block;
    margin: 5px 0;
}

.formulario select {
    width: 100%;
    padding: 5px;
    margin: 10px 0;
}

/* Asegura que el footer se mantenga en la parte inferior */
footer {
    padding: 15px 0;
    width: 100%;
}

.centered-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
}

.form-wrapper {
    max-width: 900px;
    width: 100%;
}

/* Extra para el modal de advertencia */
.modal-content {
    background-color: #fff0f6;
}

.modal-body p {
    font-size: 1rem;
}

.btn-pink-300 {
    background-color: #f9a8d4;
    border-color: #f9a8d4;
    color: #6b113e;
    box-shadow: 0 0.4rem 1rem rgba(249, 168, 212, 0.5);
    transition: all 0.3s ease;
}

.btn-pink-300:hover {
    background-color: #ec4899;
    border-color: #ec4899;
    color: #fff;
    transform: scale(1.02);
}