.banner{
    background-image: url(./img/components.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    padding-block: 150px;
}

.bannertxt{
    padding: 0;
    margin: 0;
    padding-left: 140px;
    font-size: 50px;
    font-weight: 700;
    width: 600px;
}

.bghr{
    background-color: #202020;
    border-bottom: 2px solid #101010;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    margin-inline: 60px;
    border-radius: 3px;
    padding-inline: 50px;
    height: 70px;
}

.type{
    margin: 15px 80px;
    font-size: 20px;
}

.components{
    display: flex;
    align-items: center;
}

.comptxt{
    width: 150px;
}

button, input{
    background-color: rgba(156, 65, 225);
    color: white;
    border-color: rgb(0, 100, 255);
    border-style: solid;
    border-width: 1px;
    border-radius: 5px;
    padding: 4px 40px;
    font-size: 25px;
    cursor: pointer;
    transition: all .15s;
    vertical-align: center;
}

form{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 100px;
}

input{
    margin-right: 10px;
}

@media (max-width: 1210px) {
    .bannertxt{
        font-size: 30px;
    }
    .banner{
        padding-block: 100px;
    }
}