
header  {
    color: black;
    text-align: center;
}

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

.container-titulo {
    position: relative;
    background-image: url('../img/mosaico.jpg');
    background-size: cover; 
    background-position: center; 
    padding: 20px; 
    border-radius: 10px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
    overflow: hidden; 
}

.titulo {
    font-family: 'Arial', sans-serif; 
    font-size: 36px; 
    color: #333; 
    text-align: center; 
    margin-top: 30px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-weight: bold; 
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2); 
}
.titulo-formulario {
    font-family: Arial, sans-serif; 
    font-size: 24px; 
    color: #333; 
    text-align: center; 
    margin-top: 0;
    padding: 20px; 
}

.container {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 50%;
    min-width: 350px;
    max-width: 999px;
    margin: 50px auto;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-control {
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.btn-container {
    text-align: center;
    margin-top: 20px;
}

.btn {
    background-color: #cdd1c0;
    color: #333;
    padding: 10px 0; 
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: calc(100% - 50px);
    max-width: 300px; 
    font-weight: bold; 
}

.btn:hover {
    background-color: #a8af7e;
}

footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 1rem;
}