body {
    background: #d6f5d6;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.formarea {
    background: #e8ffe8;
    border-radius: 18px;
    box-shadow: 0 0 16px rgba(60,180,60,0.1);
    max-width: 520px;
    margin: 40px auto;
    padding: 32px 28px;
    border: 2px solid #b2f2b2;
}
h2 {
    text-align: center;
    color: #229d2a;
}
h4 {
    text-align: center;
    color: #229d2a;
}
label {
    font-weight: 500;
    color: #1a7c1a;
    margin-bottom: 5px;
    display: block;
}
input[type='text'],
select,
input[type='file'] {
    width: 96%;
    padding: 8px;
    margin: 7px 0 17px 0;
    border: 1px solid #b2f2b2;
    border-radius: 7px;
    background: #f6fff6;
    font-size: 1rem;
    color: #229d2a;
}
button {
    background: #45e645;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 28px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(34,157,42,0.09);
    transition: background 0.2s;
}
button:hover {
    background: #229d2a;
}
#bararea {
    width: 100%;
    background: #c8ecc8;
    border-radius: 7px;
    margin-top: 18px;
    height: 22px;
    overflow: hidden;
}
#bar {
    height: 100%;
    background: #45e645;
    width: 0%;
    border-radius: 7px;
    transition: width 0.4s;
}
#percent {
    text-align: center;
    font-size: 1.1em;
    color: #229d2a;
    margin-top: 7px;
}
#status {
    margin-top: 10px;
    color: #1a7c1a;
    font-weight: 600;
    text-align: center;
}
.form-row {
    display: flex;
    gap: 18px;
}
.form-group {
    flex: 1;
    min-width: 120px;
}
@media (max-width: 600px) {
    .formarea {
        padding: 15px 5px;
        max-width: 98vw;
    }
    input[type='text'],
    select,
    input[type='file'] {
        width: 99%;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}