.forms {
    margin-top: 30px;
    padding: 40px;
    border-radius: 12px;
}

.forms-gray {
    background: #F2FAFF;
}

.forms-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 30px;
}

.forms-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 18px;
}

.forms-col-3 {
    width: calc(100% / 3 - 14px);
}

.forms-col-2 {
    width: calc(50% - 10px);
}

.forms-col-1 {
    width: 100%;
}

.forms-input__title {
    line-height: 100%;
    margin-bottom: 10px;
    display: block;
}

.forms-input input[type="email"],
.forms-input input[type="text"] {
    border: 0;
    outline: 0;
    padding: 17px 16px;
    border-radius: 8px;
    line-height: 100%;
    width: 100%;
}

.forms-err {
    height: 0;
    font-size: 14px;
    padding-left: 8px;
    color: #f46161;
    display: none;
}

.forms-err.showed {
    display: block;
}

.forms-input textarea {
    border: none;
    width: 100%;
    outline: none;
    border-radius: 8px;
    max-height: 90px;
}

.forms-input {
    position: relative;
}

.forms-input input[type="file"] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.forms-input input[type="file"] + label {
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #196CA4;
}

.forms-file__desk {
    color: #8E9294;
    font-size: 16px;
    font-weight: 300;
}

.forms-group-file {
    display: flex;
    align-items: center;
    gap: 30px;
}

.forms-submit {
    gap: 30px;
    display: flex;
    align-items: center;
}

.forms-submit__input input {
    border: 0;
    outline: 0;
    padding: 20px 60px;
    border-radius: 8px;
    background: #0087e0;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}

.forms-submit__desk {
    max-width: 360px;
    width: 100%;
    color: #8E9294;
    font-size: 16px;
    font-weight: 300;
    line-height: 150%;
}

.forms-submit__desk a {
    color: #196CA4;
}

.s-order__radios {
    display: flex;
}

.s-order__radio {
    float: left;
    display: inline-block;
    width: 50%;
}

.s-order__radio input {
    display: none;
}

.s-order__radio label {
    display: inline-block;
    line-height: 35px;
    cursor: pointer;
    user-select: none;
    padding: 10px 16px;
    width: 100%;
    background-color: #fff;
    border-color: transparent;
    text-align: center;
}

.s-order__radio:first-child label {
    border-radius: 6px 0 0 6px;
}

.s-order__radio:last-child label {
    border-radius: 0 6px 6px 0;
}

/* Checked */
/* Checked */

.s-order__radio input[type=radio]:checked + label {
    background: #0087e0;
    color: #fff;
}

.forms-input input::placeholder {
    color: #b8b8b8;
}