/* Body styling */
body {
    background-image: url('../img/fondoFormulario.jpg');
    font-family: 'Arial', sans-serif;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Form container */
.login-form {
    max-width: 400px;
    width: 100%;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease-in-out;
}

.login-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Form field icons */
.icon {
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #6c757d;
    position: absolute;
    pointer-events: none;
    margin-top: 15px;
}

/* Input styling */
.form-control {
    border-radius: 30px;
    padding-left: 40px;
    height: 45px;
    font-size: 1rem;
}

.form-label {
    font-weight: bold;
}

/* Button styling */
.btn-primary {
    border-radius: 30px;
    font-weight: bold;
    padding: 10px;
    background-color: #6e8efb;
    border-color: #6e8efb;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #5a75da;
    border-color: #5a75da;
}

/* Link styling */
a {
    color: #6e8efb;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 576px) {
    .login-form {
        padding: 20px;
        max-width: 100%;
    }
}

/* Body background */
body {
    background: linear-gradient(135deg, #f0f4f8, #d9e4ec);
    font-family: 'Arial', sans-serif;
}

/* Título, subtítulo y botones */
h1, h2 {
    font-weight: bold;
    color: #333;
}

.input-group .form-control {
    border-radius: 30px;
    padding: 10px 20px;
}

.input-group button {
    border-radius: 0 30px 30px 0;
}

.btn {
    border-radius: 30px;
    padding: 15px;
    font-weight: bold;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-info {
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn:hover {
    opacity: 0.9;
}

table.tabla-cabecera-color thead th {
   background-color: #004080 !important;
   color: white !important;
}

