.page {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(224,242,233);
    height: 60vh;
}

.form-container {
    font-family:"Times New Roman", Times, serif;
    line-height: 2;
    font-weight: lighter;
    max-width: 500px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-title {
    text-align: center;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .form-container {
        padding: 15px;
        max-width: 80%;
    }
}
