/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #e3f2fd, #bbdefb);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Form Section */
.form-section {
    width: 100%;
    max-width: 600px;
    background: #ffffff;
    padding: 30px;
    margin: 20px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

/* Form Title */
h1 {
    text-align: center;
    color: #0277bd;
    font-size: 24px;
    margin-bottom: 10px;
}

/* Form Description */
p {
    text-align: center;
    color: #555;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Form Group */
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

/* Labels */
.form-group label {
    font-weight: 600;
    color: #01579b;
    margin-bottom: 5px;
    font-size: 14px;
}

/* Input Fields */
.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #81d4fa;
    border-radius: 6px;
    font-size: 16px;
    background: #e1f5fe;
    outline: none;
    transition: 0.3s ease-in-out;
}

/* Input Focus Effect */
.form-group input:focus,
.form-group textarea:focus {
    border-color: #0288d1;
    background: #ffffff;
    box-shadow: 0px 0px 8px rgba(2, 136, 209, 0.2);
}

/* Textarea */
.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* File Upload */
.file-upload input {
    border: none;
    padding: 10px;
    background: #f1f8ff;
    font-size: 14px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 12px;
    background: #0288d1;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
}

/* Submit Button Hover Effect */
.submit-btn:hover {
    background: #0277bd;
    box-shadow: 0px 5px 15px rgba(2, 119, 189, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-section {
        width: 90%;
        padding: 20px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
    }

    .submit-btn {
        font-size: 16px;
    }
}
