body {
    font-family: Arial, sans-serif;
    background-color: #f7f3eb;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 765px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 30px;
}

h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 40px;
}

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

label {
    font-size: 14px;
    text-align: left;
    margin-bottom: 5px;
    color: #333;
}

textarea {
    resize: vertical;
    width: 100%;
    height: 100px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

input {
  resize: none;
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 20px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

button {
    background-color: #ff5c5c;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #e14d4d;
}

@media (max-width: 780px) {
    h1 {
        font-size: 20px;
    }

    textarea {
        height: 80px;
    }

    button {
        font-size: 14px;
    }
}
.red {
    color:red;
}
.success-message {
    display: none;
    background-color: #4CAF50;
    color: white;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
}

.error-message {
    display: none;
    background-color: #ff5c5c;
    color: white;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
}

.loading {
    display: none;
    text-align: center;
    margin-top: 20px;
}
.additional-info{
  display: flex;
  flex-direction: row;
}
.add-info-block{
  display: flex;
  flex-direction: column;
}
.order-block{
  margin-left: auto;
}
