body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f6f9;
    color: #333;
}

header {
    background-color: #1f2937;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
}

.container {
    max-width: 600px;
    margin: 30px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1f2937;
}

.btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn:hover {
    background-color: #0056b3;
}

/******************/

/* Estilo básico de la modal */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* Inicialmente oculto */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Overlay de la modal */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    z-index: 999;
}

/* Cuando el overlay es visible */
.overlay.visible {
    opacity: 1;
}

/* Modal que contiene el contenido */
.modal {
    position: relative;
    background: white;
    padding: 20px;
    max-width: 500px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    z-index: 1001; /* Asegúrate de que la modal esté por encima del overlay */
}

/* Cuando la modal es visible */
.modal.visible {
    opacity: 1;
}

/* Estilo del botón de cerrar */
button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

#username {
    margin-left:35px;
}
#password {
    margin-left:8px;
}
.input-group{
    margin-bottom:15px;
}
.content{
    display:flex;
    justify-content: space-between;
    align-items: center;
}
#loginForm{
    padding-top: 30px;
}
#loginButton{
    width: 100%;
}
.login{
    display: flex;
    justify-content: center;
    font-size: 30px;
}