.getin {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-bottom: 5px;
}

.getin__form {
    padding: 38px 25px 25px;
    border-radius: 10px;
    border: 1px solid #EFEFEF;
    background: #FFF;
    box-shadow: 0px 24px 48px 0px rgba(16, 24, 40, 0.10);
    display: flex;
    flex-direction: column;
    width: 530px;
}

.getin__header {
    color: #1D2D3F;
    text-align: center;
    font-family: 'SatoshiBlack', sans-serif;
    font-size: 40px;
    font-weight: 900;
    line-height: 125%;
    text-transform: uppercase;
    margin: 0 0 50px;
}

.getin__input {
    border: 0;
    border-radius: 8px;
    border: 1px solid #7B838F;
    padding: 17px 32px;
    margin-top: 15px;
    font-family: 'PlusJakartaSans', sans-serif;
}

.getin__input:first-of-type {
    margin-top: 0;
}

.getin__input:focus {
    outline: 0;
    border: 1px solid #1D2D3F;
}

.getin__input_text:first-of-type {
    margin-top: 15px;
    height: 180px;
}

.getin__btn {
    border-radius: 8px;
    background: #3F8DE5;
    padding: 16px 0;
    border: 0;
    margin-top: 33px;
    color: #F8FBFF;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .getin__form {
        width: 90%;
        padding: 38px 2.5% 25px;
    }
}