body,
html {
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-feature-settings:
        'clig' off,
        'liga' off;
    font-style: normal;
    background: #fff;
    color: #000;
}

.wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 12px 40px;
    box-sizing: border-box;
}

.wrapper.hidden {
    display: none;
}

.logo {
    width: 134px;
    height: 176px;
    max-width: 80%;
}

.logo img {
    display: block;
    width: 100%;
}

.title {
    font-size: 28px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 1px;
}

.description {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 34px;
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 24px;
}

form label {
    display: inline-flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

form label .label-title {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

form label .label-input {
    width: 100%;
    position: relative;
}

form label .label-input input,
form label .label-input textarea,
form label .label-input select {
    width: 100%;
    height: 52px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #edf0f4;
    padding: 8px 12px;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    font-feature-settings:
        'clig' off,
        'liga' off;
    font-style: normal;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

form label.error .label-input input,
form label.error .label-input textarea,
form label.error .label-input select {
    border: 1px solid #ff3b30;
}

form label .label-input input:focus,
form label .label-input textarea:focus,
form label .label-input select:focus {
    box-shadow:
        0 0 0 2px #599fac,
        0 0 0 4px rgba(89, 159, 172, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

form label .label-input input::placeholder,
form label .label-input textarea::placeholder,
form label .label-input select::placeholder {
    color: #1e1e24;
}

form label .label-input textarea {
    height: 89px;
    padding: 12px;
    resize: none;
}

.custom-select {
    width: 100%;
    position: relative;
}

.custom-select:after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: url('/images/arrow_drop_down.svg') no-repeat center;
    position: absolute;
    right: 12px;
    top: 17px;
    pointer-events: none;
}

form label .label-input select {
    appearance: none;
    -webkit-appearance: none;
    color: #000;
}

form label .label-input select option {
    color: #000;
}

form label .label-input.with-icon .icon {
    position: absolute;
    top: 16px;
    left: 12px;
    display: block;
    width: 20px;
    height: 20px;
}

form label .label-input.with-icon .icon img {
    display: block;
    width: 100%;
}

form label .label-input.with-icon input {
    padding-left: 42px;
}

form button {
    border-radius: 12px;
    background: #599fac;
    width: 100%;
    height: 52px;
    border: none;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-feature-settings:
        'clig' off,
        'liga' off;
    font-style: normal;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.5s ease;
}

form button:disabled {
    background: rgba(89, 159, 172, 0.45);
}

form button:not([disabled]):hover {
    background: #3b818e;
}

form label .error-text {
    color: #ff3b30;
    font-size: 16px;
    position: absolute;
    top: 0;
    right: 0;
    display: none;
}

form label.error .error-text {
    display: block;
}

.result-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.result-block .img {
    margin-bottom: 10px;
    margin-top: 70px;
}

.result-block .description {
    text-align: center;
    color: rgba(0, 0, 0, 0.65);
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
}

.result-block .description span {
    color: #000;
    font-weight: 500;
}

.result-error {
    margin: -20px 0 20px;
    color: #ff3b30;
    font-size: 16px;
    font-weight: 500;
}

.result-error.hidden {
    display: none;
}
