.subscribe {
    max-width: 800px;
    padding-bottom: 100px;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 15px;
}


.subscribe form {
    position: relative;
}

.subscribe__text {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.subscribe input,
.subscribe button {
    border: 0;
    background-color: transparent;
}

.subscribe input {
    width: 100%;
    color: #fff;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    padding-left: 0;
    font-size: 11px;
}
.subscribe input:focus {
    color: #fff;
    background-color: transparent;
    font-size: 14px;
    border-bottom: 1px solid #fff;
}

.subscribe button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 20px;
    padding: 0;
    font-size: 0;
    cursor: pointer;
}


.subscribe .title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
}

.subscribe input::-webkit-input-placeholder {
    font-size: 12px;
    color: #fff;
}

.subscribe input:-ms-input-placeholder {
    font-size: 12px;
    color: #fff;
}

.subscribeinput:-ms-input-placeholder {
    font-size: 12px;
    color: #fff;
}

.subscribeinput::placeholder {
    font-size: 12px;
    color: #fff;
}


@media (max-width: 800px) {
    .subscribe {
        padding-bottom: 50px;
        grid-template-columns: 1fr;
        row-gap: 15px;
    }
    .subscribe form {
        grid-column: 1/3;
    }

    .subscribe__text {
        align-items: center;
        justify-content: center;
    }
}


@media (max-width: 500px) {
    .subscribe .title {
        font-size: 20px;

    }
}
@media (max-width: 375px) {
    .subscribe .title {
        font-size: 18px;
    }
    .subscribe__text svg {
        width: 22px;
        height: 18px;
    }
}
@media (max-width: 330px) {
    .subscribe .title {
        font-size: 16px;

    }
}