.form-container {
    width: 95%;
    max-width: 1000px;
    margin: 40px auto;
    background: rgba(21, 115, 13, 0.08);
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

label {
    font-size: 19px;
    font-weight: 600;
    color: #15730d;
}

input, textarea, select {
    padding: 16px 18px;
    font-size: 17px;
    border-radius: 12px;
    border: 1px solid #b2d9b0;
    background: #ffffff;
    width: 100%;
    font-family: 'Jost', sans-serif;
    transition: border 0.2s, box-shadow 0.2s;
}

input:focus,
textarea:focus,
select:focus {
    border: 1px solid #15730d;
    box-shadow: 0 0 6px rgba(21, 115, 13, 0.3);
    outline: none;
}

button[type="submit"] {
    background: #15730d;
    color: white;
    padding: 16px 20px;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
    width: 300px;
    margin: 20px auto 0;
    transition: 0.2s;
}

button[type="submit"]:hover {
    background: #0e5609;
}

/* Dark mode */
body.dark .form-container {
    background: rgba(21, 115, 13, 0.22);
}

body.dark input,
body.dark textarea,
body.dark select {
    background: #2a2b2e;
    color: white;
    border: 1px solid #555;
}
