* {
    font-family: 'QuinqueFive', sans-serif !important;
    color: #ffffff;
    box-sizing: border-box;
    line-height: 1;
}

body {
    background: #000000;
}

a {
    text-decoration: none;
}

header {
    text-align: center;
    padding: 20px;
}

.header-brand > a {
    width: fit-content;
}

.header-brand > img {
    width: 210px;
    margin-top: 4px;
}

.row-block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}

.row-block-left, .row-block-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.primary-btn {
    background: #FF55AB;
    font-weight: 600;
    box-shadow: 5px 5px 0px 1px #4D2D3C;
    border-radius: 0px 0px 0px 0px;
    font-size: 15px;
    padding: 12px 24px;
    width: 100%;
    transition: all .3s;
    cursor: pointer;
    border: none;
    line-height: 1.5;
    text-align: center;
    fill: #ffffff;
    color: #ffffff;
}

.primary-btn:hover {
    background-color: #FFFFFF;
    color: #000000 !important;
    box-shadow: 10px 10px 0px 3px #FF55AB;
}

.secondary-btn {
    background: #FF55AB6E;
    font-weight: 600;
    box-shadow: 5px 5px 0px 1px #4D2D3C;
    border-radius: 0px 0px 0px 0px;
    font-size: 15px;
    padding: 12px 24px;
    width: 100%;
    transition: all .3s;
    cursor: pointer;
    border: none;
    text-align: center;
    fill: #ffffff;
    color: #ffffff;
}

.secondary-btn:hover {
    background-color: #FFFFFF;
    color: #000000;
    box-shadow: 10px 10px 0px 3px #FF55AB;
}

.title {
    font-size: 32px;
    color: #FF55AB;
    line-height: 1.5;
}

.text {
    font-family: 'Roboto', sans-serif !important;
    font-size: 16px;
    color: #ffffff;
    font-weight: 300;
    line-height: 1.5;
}

.column-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.label {
    font-family: 'Roboto', sans-serif !important;
    color: #FF55AB;
    font-size: 16px;
    margin-bottom: 3px;
}

.input > input {
    background-color: #FF55AB6E;
    border-radius: 0px 0px 0px 0px;
    font-family: 'Roboto', sans-serif !important;
    color: #ffffff;
    height: 40px;
    outline: none;
    border: 0px none;
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 16px;
}

.input > textarea {
    background-color: #FF55AB6E;
    font-family: 'Roboto', sans-serif !important;
    color: #ffffff;
    outline: none;
    border: none;
    width: 100%;
    padding-left: 18px;
    padding-top: 8px;
    max-width: 100%;
    overflow: auto;
    resize: vertical;
    height: 200px;
    padding-right: 18px;
    font-size: 16px;
}

.w-btn {
    background: #ffffff;
    color: #FF55AB;
    box-shadow: 5px 5px 0px 1px #FF55AB;
}

.w-btn:hover {
    background: #FF55AB;
    color: #ffffff;
    box-shadow: 10px 10px 0px 1px #4D2D3C;
}

.choose-city-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

@media (max-width: 1200px) {
    * {
        max-width: 100%;
    }

    .row-block {
        flex-direction: column;
    }

    body {

    }
}