body {
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'K2D', sans-serif;
}

.container {
    width: 80%;
    max-width: 600px;
    text-align: center;
    background-color: #e6f0fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.title {
    color: #1e3a8a;
    font-family: 'Readex', sans-serif;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.section {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header {
    color: #1e3a8a;
    font-size: 1.5em;
    margin-bottom: 15px;
    font-family: 'Readex', sans-serif;
}

.registration-header {
    color: #dc143c;
}

.survey-link a {
    color: #1e3a8a;
    font-size: 1.2em;
    text-decoration: none;
}

.survey-link a:hover {
    text-decoration: underline;
}

.label {
    color: #1e3a8a;
    font-weight: bold;
    text-align: left;
}

.input-field {
    padding: 8px;
    font-size: 1em;
    border: 2px solid #1e3a8a;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
    font-family: 'K2D', sans-serif;
}

.submit-btn {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #1e3a8a;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.submit-btn:hover {
    background-color: #163172;
    transform: scale(1.05);
}

.cancel-btn {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #dc143c;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
    transition: background-color 0.3s, transform 0.3s;
}

.cancel-btn:hover {
    background-color: #b22222;
    transform: scale(1.05);
}

.center {
    text-align: center;
}

.radio-group {
    text-align: left;
}

.radio-group label {
    margin-left: 5px;
    color: #1e3a8a;
}

.required {
    color: #dc143c;
}

.note {
    color: #1e3a8a;
    font-style: italic;
    margin-top: 10px;
}

.status {
    margin-top: 15px;
    text-align: left;
}

.status-pending {
    color: #d2691e;
}

.status-registered {
    color: #d2691e;
}

table {
    width: 100%;
    border-collapse: collapse;
}

td {
    padding: 10px;
    text-align: left;
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@import url('https://fonts.googleapis.com/css2?family=K2D:wght@400;700&family=Readex+Pro:wght@400;600&display=swap');