body {
    font-family: 'Montserrat', sans-serif; /* Fuente moderna y legible */
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #e0f7fa, #ffc2ef); /* Degradado de fondo */
    color: #333;
    line-height: 1.7;
}

header {
    background-color: #38c172;
    color: white;
    text-align: center;
    padding: 60px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.5em;
    font-weight: 600;
    margin: 0;
}

main {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.formulario-container {
    margin-bottom: 40px;
}

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

.form-group label {
    display: block;
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #20c997;
}

.form-group input[type="text"],
.form-group input[type="date"],
.form-group textarea {
    width: calc(100% - 22px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
}

.form-group textarea {
    resize: vertical;
}

.form-group button {
    background-color: #20c997;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-group button:hover {
    background-color: #1a9c78;
}

.volver-inicio {
    text-align: center;
    margin-top: 40px;
}

.volver-inicio a {
    display: inline-flex;
    align-items: center;
    background-color: #20c997;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.volver-inicio a:hover {
    background-color: #1a9c78;
}

.volver-inicio i {
    margin-right: 10px;
}