/* Contenedor principal */
.login-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #ffffff, #ffffff);
    color: #333;
}

/* Formulario */
.login-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
}

/* Títulos */
h2 {
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 20px;
}

/* Botón */
.btn-primary {
    background-color: #8BC34A;
    border: none;
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #76A82A;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Enlace */
.link {
    color: #4CAF50;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

/* Alertas */
.alert {
    font-size: 14px;
    margin-top: 15px;
}
