/* Custom CSS */
body {
    background-color: #f8f9fa;
    font-family: 'Roboto', sans-serif;
}

header {
    background: linear-gradient(45deg, #003049, #003049); /* Cambia estos colores si deseas */
}

header h1 {
    font-size: 2rem;
    margin: 0;
}

.card {
    border: none;
    border-radius: 10px;
}

.card-header {
    border-radius: 10px 10px 0 0;
    background: linear-gradient(45deg, #003049, #003049); /* Cambia estos colores para ajustar el fondo del header */
}

.card-body {
    padding: 2rem;
}

.form-control {
    border-radius: 5px;
}

.btn-primary {
    background: linear-gradient(45deg, #003049, #003049); /* Cambia estos colores para ajustar el fondo del botón */
    border: none;
    border-radius: 5px;
    padding: 0.75rem;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #003049, #003049); /* Cambia estos colores para ajustar el fondo del botón en hover */
}

.text-center a {
    color: #003049; /* Cambia el color del link */
    transition: color 0.3s;
}

.text-center a:hover {
    color: #003049; /* Cambia el color del link en hover */
    text-decoration: none;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}
