@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700;800&family=Raleway:wght@600;700&family=Inter:wght@400;500;600&display=swap');

.form-container {
    margin-top: 2.5%;
    margin-left: 2%;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 100%;
    height: 100%;
}

.form-text {
    flex: 1;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
}

.form-text h2 {
    color: #222;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
}

.form-text p {
    color: #555;
    line-height: 1.6;
}

form {
    opacity: 1;
    transform: translateX(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    background-color: rgba(129, 126, 155, 0.753);
    padding: 40px;
    border-radius: 10px;
    flex: 1;
    min-width: 600px;
    height: auto0px;
    height: 600px;
    display: flex;
    flex-direction: column;
}

.container-form.show {
    opacity: 0;
    transform: translateX(-100px);
}

form label {
    display: bloc600;
    color: #333;
    font-family: 'Inter', sans-serif 15px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

form textarea#user-comment {
    margin-top: 5px;
    height: 175px;
    resize: vertical;
}

form input[type="submit"] {
    margin-top: auto;
    padding: 10px 30px;
    background-color: #222;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
}

form input[type="submit"]:hover {
    background-color: #444;
}

.comments-section {
    position: relative;
    margin-left: 15%;
    border: 2px solid #434552da;
    border-radius: 12px;
    width: 790px;
    max-height: 500px;
    margin-top: 7px;
    background-color: rgba(129, 126, 155, 0.753);
}

.comments-section h2 {
    font-size: 29px;
    color: #161616;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-align: center;
}