:root {
    --color-primario: #01a7c2ff; /* Color primario */
    --color-secundario: #007090ff; /* Color secundario */
    --color-fondo: #006989ff; /* Color de fondo */
    --color-texto: #333; /* Color de texto principal */
    --color-gray: #a3bac3ff;
    --color-white: #eaebedff;
    /* Agrega más variables según tus necesidades */
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(245, 245, 249);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 400px; /* Ancho del contenedor aumentado */
    height: 500px; /* Alto del contenedor aumentado */
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="password"] {
    width: 94%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn-login{
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .container {
        width: 90%;
    }
}