/*body {*/
/*    font-family: Arial, sans-serif;*/
/*    background-color: #f4f4f9;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    height: 100vh;*/
/*    margin: 0;*/
/*}*/
.form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
}
.form-container h2 {
    margin-bottom: 20px;
    color: #333;
}
.form-container p {
    margin-bottom: 15px;
}
.form-container label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}
.form-container input[type="text"],
.form-container input[type="email"],

.form-container textarea {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 45px;
}
.form-container button {
    width: 100%;
    padding: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
.form-container button:hover {
    background-color: #218838;
}

.myform-container textarea {
    height: 148px;
}