body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #7357a4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.form-container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    border: 2px solid #7357a4;
    transition: transform 0.3s ease;
}

.form-container:hover {
    transform: scale(1.02);
}

h1 {
    color: #7357a4;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-top: 10px;
    color: #7357a4;
    text-align: left;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="time"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 10px;
    border: 2px solid #7357a4;
    box-sizing: border-box;
    background-color: #ffffff;
    color: #7357a4;
    transition: border-color 0.3s ease;
}

input:focus {
    border-color: #5e4690;
}

button {
    background-color: #7357a4;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #5e4690;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
}

.close {
    float: right;
    font-size: 20px;
    cursor: pointer;
}

button#closeModalBtn {
    background-color: #7357a4;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
}
