@font-face {
    font-family: 'DIN Pro';
    src: url('https://example.com/fonts/DINPro-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'DIN Pro', sans-serif;
    color: #2b2765;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    margin: 0;
    padding-top: 50px;
}

#header {
    width: 100%;
    height: 60px;
    background-color: #5C4B9A;
    position: fixed;
    top: 0;
    left: 0;
}

#logo {
    margin-bottom: 5px;
    margin-top: 20px;
}

#logo img {
    width: 300px;
    height: auto;
}

#namePage, #dropdownPage {
    display: none;
    text-align: center;
}

.dropdown-wrapper {
    display: flex;
    flex-direction: column; /* Направление по вертикали */
    align-items: center;
    width: 100%;
}

.dropdown-container {
    display: flex; /* Flexbox для размещения элементов в строку */
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    max-width: 1000px;
}

.instruction-wrapper {
    width: 100%;
    max-width: 1000px; /* Ширина должна совпадать с шириной контейнера dropdown */
    text-align: justify;
    margin-bottom: 20px;
}

.dropdown-element {
    flex-grow: 1; /* Элементы занимают пропорционально доступное пространство */
}

button {
    padding: 10px 20px;
    font-family: 'DIN Pro', sans-serif;
    color: white;
    background-color: #5C4B9A;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #5C4B9A;
}

select {
    width: 200px;
    border: 1px solid #ccc;
    padding: 5px;
}

/* Цвет для активных и неактивных выпадающих окон */
.select2-container--default .select2-selection--single {
    background-color: #e6e6fa;
    border-color: #ccc;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #5C4B9A;
    font-family: 'DIN Pro', sans-serif;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    border-left: 1px solid #ccc;
}

/* Цвет для отключенного выпадающего списка */
.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #e6e6fa !important;
    color: #5C4B9A;
}

input[type="text"] {
    padding: 10px;
    border: 1px solid #ccc;
    width: 300px;
    margin-bottom: 20px;
    background-color: #e6e6fa;
}

.instruction {
    font-family: 'DIN Pro', sans-serif;
    color: #2b2765;
    font-size: 24px;
    font-weight: 300;
}

.instruction1 {
    font-family: 'DIN Pro', sans-serif;
    color: #2b2765;
    max-width: 880px;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
}

.success-icon {
    display: none;
    width: 20px;
    height: 20px;
    margin-left: 10px;
}