body {
    background-color: #f0f2f5;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.card {
    width: 100%;
    max-width: 400px; /* Ajustar el ancho máximo del formulario */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 40px;
}

.text-center img {
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #0044cc;
    border-color: #0044cc;
    transition: background-color 0.3s, border-color 0.3s;
}

.btn-primary:hover {
    background-color: #0033aa;
    border-color: #0033aa;
}
