@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
.drweb-from__wrapper {
    font-family: 'Roboto', sans-serif;
    padding: 24px;
    background-color: #f7f7f7;
    border-radius: 1px;
    max-width: 100%;
    background: linear-gradient(16deg, #fff 24.39%, #qAEAEAE 110.91%);
}
.drweb-from__top {
    display: flex;
    align-items: center;
    gap: 32px;
}
@media (max-width: 480px) {
    .drweb-from__top {
        flex-direction: column;
        align-items: flex-start;
    }
}
.drweb-from__title {
    border-radius: 35px;
    margin: 0;
    color: #AEAEAE;
    font-size: 18px;
    font-weight: 500;
    line-height: 133.333%; 

}
.drweb-from__bottom {
    margin-top: 12px;
    display: flex;
    gap: 24px;
}
@media (max-width: 480px) {
    .drweb-from__bottom {
        border-radius: 35px;
        flex-direction: column;
        align-items: stretch;
    }
}
.drweb-from__input {
    color: #FC4F03;
    flex: 1;
    border-radius: 35px;
    border: 1px solid #fff;
    background: #fff;
    padding: 11px 32px;
    align-items: center;
    font-size: 18px;
}
.drweb-from__input:focus {
      border-radius: 35px;
    outline: none;
    border: 1px solid #FC4F03;
}
.drweb-from__input::placeholder {
    border-radius: 15px;
    overflow: hidden;
    color: #AEAEAE;
}
.drweb-from__btn {
    padding:11px 32px;
    border-radius: 15px;
    background: #fff;
    font-size: 18px;
    color: #AEAEAE;
    border: 1px solid #AEAEAE;
    cursor: pointer;
    transition: all 0.3s ease;
}
.drweb-from__btn:hover {
    padding:11px 32px;
    border-radius: 35px;
    background: #FC4F03;
    font-size: 18px;
    color: #fff;
    border: 1px solid #FC4F03;
    cursor: pointer;
}