/* Importar fuente desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f9f0; /* Fondo verde muy claro */
    margin: 0;
    padding: 20px;
    color: #1a3d1a;
}

h1 {
    color: #2d6a2d;
    text-align: center;
    margin-bottom: 30px;
}

form {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    margin: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
    color: #245624;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

textarea {
    resize: vertical;
    min-height: 80px;
}

button {
    background-color: #3fa34d;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

button:hover {
    background-color: #338a3e;
}

p a {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #2f6e2f;
    text-decoration: none;
    font-weight: 600;
}

p a:hover {
    text-decoration: underline;
}

/* Tarjetas de solicitudes */
.card {
    background-color: white;
    padding: 20px;
    margin: 15px auto;
    border-left: 6px solid #3fa34d;
    border-radius: 10px;
    max-width: 600px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.card h3 {
    margin-top: 0;
    color: #2e562e;
}
