body {
    background-color: #f7f7f7;
    width: 400px;
    height: 420px;
    margin: 0 0 0 0;
    /* display: flex;
    flex-direction: column; */
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
.btn-success {
    background-color: #28a745; /* Зеленый цвет для успешной кнопки */
}

.btn-danger {
    background-color: #dc3545; /* Красный цвет для неуспешной кнопки */
}
h2 {
    margin-bottom: 15px;
    margin-left: 5px;
    margin-right: 5px;
    text-align: center;
}

.feedback-form {
    background-color : #f7f7f7;
    display: flex;
    flex-direction: column;
    background-color: #f7f7f7;
    width: 400px;
    height: 430px;
    margin-top: 5px;
}

input {
    margin-left: 5px;
    margin-right: 5px;
}

label {
    margin-bottom: 5px;
    margin-left: 5px;
    margin-right: 5px;
}
textarea {
    margin-bottom: 5px;
    margin-left: 5px;
    margin-right: 5px;
}

a{
    text-align: right;
    margin-right: 5px;
}

.back-container {
    display: flex;
    flex-direction: row-reverse;
}

#contactForm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 5px;
    padding-right: 5px;
}

#submitButton {
    margin-top: 10px;
}

.loader {
    border: 8px solid #f3f3f3; /* Серый круговой бордюр */
    border-top: 8px solid #3498db; /* Синий верхний бордюр */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite; /* Анимация вращения */
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}