/* form.css */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.panel {
    max-width: 100%;
    padding: 20px;
    margin: 0 auto;
    background-color: #f4f4f4;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #1c3284;
    margin-bottom: 20px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #1c3284;
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea,
input[type="file"] {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #1c3284;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #1c3284;
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.submit-btn:hover,
.submit-btn:focus {
    background-color: #0a1c56;
}

.error-message {
    color: #a70000;
    font-size: 14px;
    display: none;
}



@media(min-width: 1024px) {
    .panel {
        max-width: 800px;
    }
}
