@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
.drweb-from {
    margin-top: 2rem;
}
.drweb-from__wrapper {
    font-family: 'Roboto', sans-serif;
    margin: auto;
    padding: 24px;
    background-color: #FFF;
    border-radius: 20px;
    max-width: 788px;
}
@media (max-width: 480px) {
    .drweb-from__wrapper {
        text-align: center;
    }
}
.drweb-from__top {
    display: flex;
    align-items: center;
    gap: 12px;
}
@media (max-width: 480px) {
    .drweb-from__top {
        flex-direction: column;
        align-items: flex-start;
    }
}
.drweb-from__title {
    margin: 0.5rem;
    color: #000;
    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 {
        flex-direction: column;
        align-items: stretch;
    }
}
.drweb-from__input {
    color: #000;
    flex: 1;
    border-radius: 5px;
    border: 1px solid #CCC;
    background: #FFF;
    padding: 13px 12px;
    align-items: center;
    font-size: 18px;
}
.drweb-from__input:focus {
    outline: none;
    border: 1px solid #000;
}
.drweb-from__input::placeholder {
    overflow: hidden;
    color: #D9D9D9;
}
.drweb-from__btn {
    padding:14px 32px;
    border-radius: 25px;
    background: #69B42E;
    font-size: 18px;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.drweb-from__btn:hover {
    background: #80BF4D;
}
