body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    height: 80vh; /* Ajustamos la altura del contenedor */
    overflow-y: auto; /* Agregamos scroll vertical */
    overflow-x: hidden;
}

h2 {
    text-align: center;
    color: #34495e;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

form label {
    display: block;
    margin: 10px 0 5px;
    color: #2c3e50; /* Color del texto de los labels */
    font-weight: bold;
}

form input, form select {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    background-color: #ecf0f1; /* Fondo de los campos de entrada */
    color: #2c3e50; /* Texto de los campos */
    font-size: 14px;
}

form input:focus, form select:focus {
    outline: none;
    border-color: #2980b9; /* Borde activo */
}

button {
    width: 100%;
    padding: 10px;
    background-color: #2980b9; /* Color de fondo del botón */
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #3498db; /* Color al pasar el cursor */
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: #2980b9; /* Color del scroll */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #3498db; /* Hover del scroll */
}
