body {
    font-family: 'Segoe UI', sans-serif;
    background: #f0f2f5;
    margin: 0;
    padding: 20px;
}

.form-container {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #2e3a59;
    margin-bottom: 10px;
}

p {
    text-align: center;
    color: #555;
    margin-bottom: 25px;
}

h2 {
    color: #004080;
    border-left: 4px solid #004080;
    padding-left: 10px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

label {
    font-weight: 500;
    margin-bottom: 5px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
input[type="file"],
select,
textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    width: 100%;
}

textarea {
    resize: vertical;
}

input[type="checkbox"] {
    transform: scale(1.1);
    margin-right: 10px;
}

.form-buttons {
    text-align: center;
    margin-top: 25px;
}

button {
    padding: 12px 30px;
    margin: 10px;
    background-color: #004080;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #0066cc;
}

a.back-home {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    background: #004080;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s ease;
}

a.back-home:hover {
    background: #0066cc;
}
