*{
    margin: 0;
    padding: 0;
    font-family: 'poppins',sans-serif;
    box-sizing: border-box;
}
body{
    background-image: url("tecbgi.jpg")

}
.hero{
width: 100%;
min-height: 100vh;
/* background: linear-gradient(45deg,#d6262658,#781b9d); */
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
color: #fff;
}
.hero h1{
    font-size: 45px;
    font-weight: 500;
    margin-top: -50px;
    margin-bottom: 50px;
}
.hero h1 span{
   color: #ff2963;  
}
textarea{
    width: 850px;
    height: 200px;
    background-color: #403d84;
    color: #fff;
    font-size: 15px;
    border: 0 ;
    outline: 0;
    padding: 20px;
    border-radius: 8%;
    resize: none;
    margin-bottom: 30px;


}
textarea::placeholder{
    font-size: 16px;
    color: #ddd;
}
.row{
    width:600px;
    display: flex;
    align-items: center;
    gap: 20px;

}
button{
    background: #0f0203;
    color: #ffffff;
    font-size:16px;
    padding: 10px 30px;
    border-radius: 35px;
    border: 0;
    outline: 0;
    cursor: pointer;

}
select{
    flex: 1;
color: #fff;
    background: #403d84;
    height: 50px;
    padding: 0 20px;
    outline: 0;
    border:0;
    border-radius: 35px;
    background-repeat: no-repeat;
    background-size: 15px;
    background-position-x: calc(100% - 20px);
    background-position-y: 20px;

}
@media (max-width:768px){
    .hero{
        flex-direction: column;
        

    }
}
.bt{
    color: #fff;
    text-align: center;
}