*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
.hero-section{
    color: #fff;
    width: 100%;
    height: 100vh;
    background: linear-gradient(45deg, #010758, #490d61);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
h1{
    font-size: 45px;
    font-weight: 500;
    margin-bottom: 30px;
}
h1 span{
    color: #ff2963;
    position: relative;
}
h1 span::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 225px;
    border-radius: 35px;
    background: #fff;
}
textarea{
    width: 600px;
    height: 250px;
    max-width: 80%;
    background: #403d84;
    color: #fff;
    font-size: 15px;
    border: 0;
    outline: 0;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    resize: none;
}
textarea::placeholder{
    font-size: 15px;
    color: #ddd;
}
.row{
    width: 600px;
    max-width: 80%;
    display: flex;
    gap: 20px;
    position: relative;
}
select{
    flex: 1;
    color: #fff;
    background: #403d84;
    padding: 10px 20px;
    border: 0;
    outline: 0;
    border-radius: 35px;
    cursor: pointer;
    appearance: none;
}
#angle-down{
    position: absolute;
    top: 35%;
    right: 28%;
    pointer-events: none;
}
button{
    border: 0;
    color: #fff;
    background: #ff2963;
    font-size: 16px;
    padding: 10px 30px;
    border-radius: 35px;
    cursor: pointer;
}
button i{
    margin-right: 10px;
}

@media(max-width: 700px){
    h1{
        font-size: 25px;
    }
    h1 span::after{
        width: 125px;
    }
    textarea{
        height: 180px;
    }
    .row{
        flex-direction: column;
    }
    select{
        padding-right: 40px;
    }
    #angle-down{
        top: 10px;
        right: 20px;
    }
}