.b-container {
    max-width: 1183px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 100px;
    align-items: center;
    height: 100vh;
    padding: 32px 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    padding: 0;
    margin: 0;
}
*, *::before, *::after {
    box-sizing: border-box;
}

.b-logo {
    position: absolute;
    top: 24px;
}

.b-title {
    font-weight: 700;
    font-size: 60px;
    line-height: 1.2;
    color: #1A1A1A;
    font-family: 'Montserrat', sans-serif;
}

.b-form {

}

.b-form input {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    color: #1A1A1A;
    border: none;
    width: 100%;
    margin-bottom: 50px;
    border-bottom: 6px solid #1A1A1A;
    padding: 10px 0;
    outline: none;
    transition: all .3s ease-out;

}

.b-form input:focus {
    border: none;
    outline: none;
    box-shadow: none;
    border-bottom: 6px solid #FF0033;

}

.b-form input::placeholder {
    color: #1A1A1A;
}

.b-btn {
    background: #FF0033;
    border-radius: 2px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: #FFFFFF;
    border: none;
    outline: none;
    padding: 0 12px;
    max-width: 141px;
    width: 100%;
    cursor: pointer;
    transition: all .3s ease-out;

}

.b-btn:hover {
    background: #000000;
}


.b-copy {
    position: absolute;
    bottom: 40px;
    font-weight: 500;
    font-size: 9px;
    line-height: 1.2;
    color: #989898;

}

@media (max-width: 1199px) {
    .b-container {
        grid-template-columns: 1fr;
        grid-gap: 24px;
    }

    .b-container > div:nth-child(2) {
        max-width: 400px;
    }

    .b-logo {
        position: static;
        margin-bottom: 24px;
    }
}

@media (max-width: 767px) {
    .b-title {
        font-size: 38px;
    }
}

@media (max-width: 575px) {
    .b-container {
        height: auto;
    }

}