@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'poppins';
}

.hero {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(45deg, #010758, #490d61);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 45px;
    font-weight: 600;
    margin-top: -50px;
    margin-bottom: 50px;
    color: white;
}

.hero h1 span {
    color: #ff2963;
}

.hero textarea {
    width: 600px;
    height: 250px;
    background: #403d84;
    color: white;
    font-size: 15px;
    border-radius: 10px;
    resize: none;
    border: 0;
    padding: 20px;
    outline: 0;
    margin-bottom: 30px;
}
textarea::placeholder{
    color: #ddd;
    font-size: 16px;
}
.row{
    width: 600px;
    display: flex;
    align-items: center;
    gap: 20px;
}
button{
    background-color: #ff2963;
    color: #fff;
    padding: 10px 30px;
    border-radius: 35px;
    border: 0;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    outline: 0;
    cursor: pointer;
}
.select{
    flex: 1;
    background-color: #403d84;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
    color: white;
    border-radius: 35px;
}
select{
    outline: 0;
    border: 0;
    flex: 1;
    color: white;
    height: 100%;
        background-color: #403d84;
    appearance: none;
}