@font-face {
    font-family: 'NewYorkExtraLarge';
    src: url('../fonts/new-york-extra-large/NewYorkExtraLargeRegular.otf') format('truetype');
    /* Дополнительные настройки шрифта, если необходимо */
}

body {
    font-family: 'NewYorkExtraLarge', sans-serif;
    background: #f2f2f2;
    min-height: 100vh;
    background-image: url(../img/fbg2.png);
    background-repeat: repeat;
    background-size: auto;
    background-position: 0 0;
}
header {
    width: 100%;
    background-color: #b7965b;
    padding: 20px;
    min-height: 60px;
}
header img{
    max-width: 150px;
}
.logo {
    text-align: center;
}
img {
    max-width: 100%;
}
h1 {
    text-align: center;
    margin: 20px;
}
form {
    padding: 30px;
}
/* Фирменные цвета */
input, select, .select2-selection__rendered{
    color: #b7965b !important;
    border-color: #b7965b !important;
    border-radius: 0 !important;

}
.select2-container {
    max-width: 100%;
}
.select2-selection--multiple .select2-selection__rendered {
    line-height: 27px !important;
}
.select2-selection__rendered , .select2-selection__arrow{
    height: 40px !important;
    line-height: 40px !important;
    border-radius: 0 !important;
}
.select2-selection {
    border: 1px solid #b7965b !important;
    height: 40px !important;
    border-radius: 0 !important;
}
button {
    color: #191919 !important;
    background-color: #b7965b !important;
    border-color: #b7965b !important;
    border-radius: 0 !important;
    transition: 0.6s;
}
button:hover{
    color: #b7965b !important;
    background-color: #191919 !important;
    border-color: #191919 !important;
}
footer {
    width: 100%;
    background-color: #1f1c20;
    padding: 20px 40px;
    text-align: center;

}
footer img {
    max-width: 200px;
}
/* Стили для сообщения об успешной отправке */
.success-message {
    display: none;
    margin-top: 20px;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
}
