/* Global styles for the body to center the form */
.body-centered {
    font-family: 'Arial', sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
}

/* Container to center the form with shadow and border-radius */
.form-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* Style for the form title */
.form-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

/* Style for all labels */
.label-field {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
    color: #555;
}

/* Style for input fields */
.input-field,
.input-file,
textarea {
    width: 100%;
    padding: 12px 15px;
    margin-top: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 16px;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
}

/* Focused input field with better border effect */
.input-field:focus,
.input-file:focus,
textarea:focus {
    outline: none;
    border-color: #007bff;
}

/* Style for the submit button */
.submit-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

/* Hover effect for submit button */
.submit-btn:hover {
    background-color: #0056b3;
}

/* Additional responsive padding */
@media (max-width: 768px) {
    .form-container {
        padding: 20px;
    }
}
