.container {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.form-container {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 10px #dee3e3;
    height: fit-content;
    align-self: center;
    margin-bottom: 50px;
    margin-top: 10px;
}

.form-container h2 {
    text-align: center;
}
form {
    display: flex;
    flex-direction: column;
}
label {
    margin-top: 10px;
    font-weight: bold;
    text-align: left;
}

input, textarea {
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    margin-top: 15px;
    padding: 10px;
    background: #004040;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

small {
    display: block;
    margin-top: 10px; 
    font-size: 12px;
    color: #666;
    text-align: center;
}
