/* Apply some basic styles to the form */
.form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Style form field labels */
.form-group label {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

/* Style text inputs */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group input[type="file"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 16px;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="date"]:focus,
.form-group input[type="file"]:focus,
.form-group textarea:focus {
    border-color: #007bff;
}

/* Style radio buttons */
.form-group input[type="radio"] {
    margin-right: 5px;
}

/* Style select dropdowns */
.form-group select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 16px;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.form-group select:focus {
    border-color: #007bff;
}

/* Style the submit button */
.form-group .btn {
    background-color: #007bff;
    color: #fff;
    font-size: 18px;
    padding: 12px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-group .btn:hover {
    background-color: #0056b3;
}

/* Add some spacing to the form */
.form-group:last-child {
    margin-bottom: 0;
}

/* Make the form responsive */
@media (max-width: 768px) {
    .form {
        width: 90%;
    }
}
