body {
    font-family: Arial, sans-serif;
    font-size: 18px; /* Texto general más grande */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #f0f2f5;
    margin: 0;
    padding: 10px;
}

form {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

input, button {
    display: block;
    width: 100%;
    margin: 10px 0;
    font-size: 18px; /* Tamaño de texto en campos y botones */
    padding: 10px; /* Mejora la interacción táctil */
    box-sizing: border-box;
}

/* 💡 Diseño responsivo para pantallas pequeñas */
@media (max-width: 480px) {
    body {
        font-size: 20px; /* Texto más grande en pantallas pequeñas */
    }

    input, button {
        font-size: 20px;
        padding: 12px;
    }
}

.logo-container {
    text-align: center;
    margin-bottom: 15px;
}

.logo {
    width: 160px; /* ajusta el tamaño */
    height: auto;
}



.bienvenido {
    font-size: 30px;
    color: #333;
    margin-bottom: 10px;
     justify-content: center;
    
}

input {
    width: 90%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width: 95%;
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

p a {
    text-decoration: none;
    color: #007BFF;
    font-size: 14px;
}

/* Estilo general para los select */
select {
    width: 90%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: white;
    appearance: none; /* Elimina el estilo nativo de la flecha en algunos navegadores */
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

/* Agrega una flecha personalizada */
select {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D'10'%20height%3D'6'%20viewBox%3D'0%200%2010%206'%20xmlns%3D'http://www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M0%200l5%206%205-6H0z'%20fill%3D'%23333'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px 6px;
}

/* Hover y focus para mejor UX */
select:focus {
    border-color: #007BFF;
    outline: none;
    box-shadow: 0 0 5px rgba(0,123,255,0.5);
}

/* Responsivo */
@media (max-width: 480px) {
    select {
        font-size: 18px;
        padding: 12px;
    }
}
.form-group {
    margin-bottom: 10px; /* separa los campos verticalmente */
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
}

