.element-form {
    background: url('car_image.png') no-repeat center center;
    display: flex;
    justify-content: center; /* Горизонтальное центрирование */
    align-items: center; /* Вертикальное центрирование */
    height: 100vh; /* Занять 100% высоты экрана */
}

.form-container {
    background: #03030366;
    padding: 20px;
    width: 900px;
    height: 800px;
    box-sizing: border-box;
    border-radius: 50px;
    border: 2px solid;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Центрирование содержимого по вертикали */
    align-items: center; /* Центрирование содержимого по горизонтали */
}

textarea {
    background: #03030366;
    color: white;
    width: 100%;
    height: 150px;
    padding: 15px;
    border-radius: 10px;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Легкая тень */
    font-size: 16px;
    line-height: 1.5;
    resize: none; /* Убирает возможность изменять размер текстового поля */
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

textarea:focus {
    border: 2px solid #ccc; /* Цвет рамки */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Тень при фокусе */
}


.small {
    font-size: 12px;
    color: #888;
}
