.signup-short-block {
    position: relative;
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: self-end;
}

.signup-short-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    z-index: -1;
}

.signup-short-block h2 {
    color: #fff;
    font-size: 25px;
    margin: 10px 0 0;
    font-weight: 500;
}

.signup-short-block p {
    color: #C6E2F1;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 5px;
    line-height: 160%;
    margin: 0;
    text-transform: uppercase;

}

.signup-short-block .left {
    width: 40%;
}

.signup-short-block .right {
    /* margin-bottom: 20px; */
    width: 58%;
}

.signup-short-block form {
    display: flex;
    gap: 10px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.signup-short-block input[type="email"] {
    width: 45%;
}

.signup-short-block input[type="tel"] {
    width: 30%;
}

.signup-short-block input[type="submit"] {
    width: 20%;
}

@media (max-width: 1100px) {
    .signup-short-block {
        flex-direction: column;
    }
    .signup-short-block .left {
        width: 100%;
    }
    .signup-short-block .right {
        margin-top: 40px;
        width: 100%;
    }

}
@media (max-width: 600px) {
    .signup-short-block h2 {
        font-size: 24px;
        text-align: center;
    }
    .signup-short-block p {
        font-size: 16px;
        text-align: center;
    }
    .signup-short-block form {
        flex-direction: column;
    }
    .signup-short-block input[type="email"], 
    .signup-short-block input[type="tel"] {
        width: 100%;
    }
    .inner .signup-short-block input[type="submit"] {
        width: 100%;
        margin-top: 20px;
    }
}