body {
    background-color: #e30613;
    color: white;
    font-family: 'Inter', sans-serif;
}
.login-container {
    max-width: 400px;
    margin: auto;
    margin-top: 50px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}
.logo {
    max-width: 330px;
    margin-bottom: 10px;
}
.input-group-text {
    background: #e30613;
    color: white;
    border-radius: 10px 0 0 10px;
    padding: 10px 15px;
    font-size: 1.2em;
}
.form-control {
    background: #f2f2f2;
    border: none;
    border-radius: 0 10px 10px 0;
    padding: 15px;
}
.btn-login {
    background: #e30613;
    color: white;
    border-radius: 10px;
    padding: 10px;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}
.btn-login:hover {
    background: #b30510; /* Un rojo más oscuro */
    color: white;
}
.social-icons a {
    font-size: 24px;
    margin: 10px;
    color: white;
    transition: 0.3s;
}
.social-icons a:hover {
    color: #ddd;
}
h1 {
    font-size: 2rem; /* Equivalente a 32px en la mayoría de los casos */
}
/* Mejora del contenedor de texto */
.text-center {
    text-align: center;
}
/* Estilos de las alertas */
.alert {
    font-size: 16px;
    padding: 15px;
}
.forgot-password {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #e30613;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}
.forgot-password:hover {
    color: #b30510;
    text-decoration: underline;
}