/* Estilos personalizados para el login */

body, html {
    height: 100%;
    margin: 0;
}

.login-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.login-content {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center; /* esto ahora centra todo el bloque */
    padding-top: 1rem;
}


.login-form {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
}

.login-form img.form-logo {
    max-height: 80px;
    margin-bottom: 1rem;
}

.form-control::placeholder {
    color: #999;
}

.logo-img {
    height: 40px;
    width: auto;
    margin-left: 1rem;
}

footer {
    background-color: #f8f9fa;
    text-align: center;
    padding: 15px;
}

.forgot-link {
    text-align: left;
}

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