/* Reset de estilos y estilos básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
}

body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #d7e7f7 !important;
}

h1 {
    text-align: center; /* Centrar el texto */
    margin: 0; /* Eliminar margen por defecto */
    font-size: 24px; /* Tamaño del texto */
}


main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 8%;
    margin-bottom: 4%;
}

.logo-container {
    margin-bottom: 10px;
}

h1 {
    font-size: 28px;
    color: #333;
}

.container {
    max-width: 600px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 900px !important;
    
}

.login{
    display: flex;
    flex-direction: column;
    text-align: center;
}

.titulo {
    margin-bottom: 10px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
    display: grid;
    place-items: center;

}

label {
    font-weight: bold;
    color: #555;
}

.input-control {
    width: 60%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
}

.btn-iniciar {
    text-align: center;
}

.btn {
    padding: 10px 20px;
    /*background-color: #00FFFF !important;*/
    background-color: #01257D !important;
    color: #fff !important;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    /*background-color: #0ae2e2 !important;*/
    background-color: #0633a5 !important;
}

@media (max-width: 768px) {
    .input-control {
        width: 80%;
        padding: 10px;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 4px;
        text-align: center;
    }

    .container {
        max-width: 600px;
        background-color: #fff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        width: auto !important;
        
    }
    main {
        padding: 20px;
    }
}

