body {
    font-family: Arial, sans-serif;
    background-color: #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}
.form-container {
    max-width: 450px;
    width: 100%;
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}
.form-container h2 {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    color: #333333;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #666666;
    margin-bottom: 8px;
    display: block;
}
.form-group input[type="text"],
.form-group input[type="time"],
.form-group input[type="date"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-size: 14px;
    color: #333333;
    transition: border-color 0.3s ease;
}
.form-group input[type="text"]:focus,
.form-group input[type="time"]:focus,
.form-group input[type="date"]:focus {
    border-color: #4CAF50;
    outline: none;
}
.radio-group {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.radio-group label {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
}
.radio-group input[type="radio"] {
    margin-right: 6px;
}
.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.submit-btn:hover {
    background-color: #3e8e41;
}