/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.hero {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(45deg, #010758, #490d61);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: #fff;
}

.hero h1 {
    font-size: 45px;
    font-weight: 500;
    margin-top: -50px;
    margin-bottom: 50px;
}

.hero h1 span {
    color: #ff2963;
}

textarea{
    width: 600px;
    height: 250px;
    background: #403d84;

    color: #fff;
    font-size: 15px;
    border: 0;
    outline: 0;
    padding: 20px;
    border-radius: 10px;
    resize: none;
    margin-bottom: 30px;
}

textarea::placeholder{
    font-size: 16px;
    color: #ddd;
}

.row{
    width: 600px;
    display: flex;
    align-items: center;
    gap: 20px;
}

button{
    background: #ff2963;
    color: #fff;
    font-size: 16px;
    padding: 10px 30px;
    border-radius: 35px;
    border: 0;
    outline: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

button img{
    width: 16px;
    margin-right: 10px;
}

select{
    flex: 1;
    color: #fff;
    background: #403d84;
    height: 50px;
    padding: 0 20px;
    outline: 0;
    border: 0;
    border-radius: 35px;
    appearance: none;
    background-image: url('images/dropdown.png');
    background-repeat: no-repeat;
    background-size: 15px;
    background-position-x: calc(100% - 20px);
    background-position-y: 20px;
}

@media (max-width: 618px){

    textarea{
        height: 200px;
    }

    .hero h1{
        font-size: 30px;
        text-align: center;
    }
} */



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.hero {
    width: 100%;
    min-height: 100vh;
    padding: 20px;
    background: linear-gradient(45deg, #010758, #490d61);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: #fff;
}

/* ---------- Heading ---------- */

.hero h1 {
    font-size: 45px;
    font-weight: 500;
    margin-bottom: 40px;
    text-align: center;
}

.hero h1 span {
    color: #ff2963;
}

/* ---------- Textarea ---------- */

textarea {
    width: 100%;
    max-width: 600px;
    height: 250px;
    background: #403d84;

    color: #fff;
    font-size: 15px;

    border: none;
    outline: none;

    padding: 20px;
    border-radius: 10px;

    resize: none;
    margin-bottom: 25px;
}

textarea::placeholder {
    color: #ddd;
}

/* ---------- Row ---------- */

.row {
    width: 100%;
    max-width: 600px;

    display: flex;
    align-items: center;
    gap: 15px;
}

/* ---------- Select ---------- */

select {
    flex: 1;
    height: 50px;

    padding: 0 20px;
    border: none;
    outline: none;
    border-radius: 35px;

    color: #fff;
    background: #403d84;

    appearance: none;

    background-image: url("images/dropdown.png");
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: right 20px center;
}

/* ---------- Button ---------- */

button {
    background: #ff2963;
    color: #fff;

    font-size: 16px;
    padding: 12px 30px;

    border: none;
    outline: none;
    border-radius: 35px;

    cursor: pointer;

    display: flex;
    align-items: center;
}

button img {
    width: 16px;
    margin-right: 10px;
}

/* ---------- Mobile Responsive ---------- */

@media (max-width:600px) {

    .hero h1 {
        font-size: 30px;
    }

    textarea {
        height: 200px;
    }

    .row {
        flex-direction: column;
        gap: 12px;
    }

    select {
        width: 100%;
    }

    button {
        width: 100%;
        justify-content: center;
    }
}