body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: url("/static/Agro.jpg") no-repeat center center fixed;
    background-size: cover;
    color: white;
    height: 100vh;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 5% auto;
    background: rgba(20, 20, 20, 0.8);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

h1 {
    text-align: center;
    color: #90ee90;
    margin-bottom: 10px;
}

p {
    text-align: center;
    font-size: 16px;
    color: #dcdcdc;
    margin-bottom: 30px;
}

.formulario {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    width: 100%;
}

input,
select {
    padding: 10px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #222;
    outline: none;
}

button {
    background: linear-gradient(90deg, #4CAF50, #81C784);
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    margin-top: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #66BB6A, #A5D6A7);
}

.resultado {
    margin-top: 30px;
    padding: 20px;
    background: rgba(40, 40, 40, 0.8);
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.resultado h2 {
    color: #98FB98;
}