body.login-page {
    background-color: #63178F;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between; /* Empuja el contenido */
}

.main-container {
    flex-grow: 1; /* Hace que el contenido principal crezca */
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-container {
    padding: 20px;
    text-align: center;
    width: 100%;
}

.bottom-text {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 1.5rem; /* Ajuste de tamaño */
}

.login-card {
    background-color: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 15px;
    padding: 2rem;
    color: white;
}

.login-card .form-label {
    color: white;
}

.login-card .form-control {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.login-card .form-control::placeholder {
    color: #f8f9fa;
}

.login-card .btn-primary {
    background-color: #9c27b0;
    border-color: #9c27b0;
}

/* Media Query para pantallas pequeñas */
@media (max-width: 768px) {
    .bottom-text {
        font-size: 1.2rem; /* Reduce el tamaño del texto */
    }
}