@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

.login-container {
    background-color: white;
    border-radius: 4px  ;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    padding: 30px;
    text-align: center;
}
.logo {
    margin-bottom: 30px;
}
.logo img {
    max-width: 250px;
}
.form-group {
    margin-bottom: 20px;
    text-align: left;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
    color: #333;
}
.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}
.btn-login {
    width: 100%;
    padding: 12px;
    background-color: #5e1138;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
}
.btn-login:hover {
    background-color: #4a0e2c;
}
.footer {
    margin-top: 20px;
    font-size: 12px;
    color: #777;
}
body {
    font-family: 'Roboto', sans-serif;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/wmremove-transformed.webp");
    background-size: cover; /* Para cubrir todo el contenedor */
    background-position: center; /* Para centrar la imagen */
    background-repeat: no-repeat; /* Para evitar que se repita */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Agregar en tu archivo CSS */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
