/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #2C3E50;
    color: white;
    text-align: center;
    padding: 20px;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #f39c12;
}

h1 {
    margin-top: 20px;
}

/* Main Section */
main {
    padding: 50px;
    background-color: white;
    max-width: 900px;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

label {
    font-size: 16px;
    font-weight: 600;
    color: #2C3E50;
}

input, select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

input[type="file"] {
    padding: 6px;
}

button {
    background-color: #f39c12;
    color: white;
    padding: 12px;
    border-radius: 5px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #e67e22;
}

small {
    font-size: 12px;
    color: #7f8c8d;
}

footer {
    background-color: #2C3E50;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px;
}

footer nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

footer nav ul li a:hover {
    color: #f39c12;
}

footer p {
    font-size: 14px;
    margin-top: 10px;
    color: #bdc3c7;
}
