body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background-color: #ffffff; 
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 100vh;*/
    margin: 0;
}

.form-container {
    background: #ffffff; 
    border-radius: 20px;
    padding: 20px 30px;
    max-width: 1000px;
    width: 100%;
}

h2 {
    text-align: center;
    color: #000000;
    font-size: 1.5em;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
    font-weight: bold;
    color: #000000;
}

input, textarea {
    margin-top: 5px;
    padding: 10px;
    border: 1px solid #60ffc2;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    background-color: #ecfff8;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #75ffba;
    box-shadow: 0 0 8px #c1ffe2;
}

button {
    margin-top: 20px;
    padding: 10px;
    background-color: #36da9b;
    color: #ffffff;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #1ca057;
}
