@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: #212121;
    border-radius: 20px;
    max-width: 788px;
}
.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;
    color: #FFF;
    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: #fff;
    flex: 1;
    border-radius: 5px;
    border: 1px solid #4D4D4D;
    background: #212121;
    padding: 13px 12px;
    align-items: center;
    font-size: 18px;
}
.drweb-from__input:focus {
    outline: none;
    border: 1px solid #fff;
}
.drweb-from__input::placeholder {
    overflow: hidden;
    color: #404040;
}
.drweb-from__btn {
    padding:14px 32px;
    border-radius: 5px;
    background: #69B42E;
    font-size: 18px;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.drweb-from__btn:hover {
    background: #80BF4D;
}