.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}
.card h2 {
    color: #4f46e5;
}
.form-group {
    margin-bottom: 15px;
    text-align: left;
}
label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}
input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.submit-btn {
    background: linear-gradient(to right, #4f46e5, #e02454);
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}
.submit-btn:hover {
    background: linear-gradient(to right, #4338ca, #e02454);
}