*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
.main{
    width: 100%;
    min-height: 100vh;
    background: radial-gradient(circle, rgba(63,94,251,1) 0%, rgba(252,70,107,1) 100%);
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: antiquewhite;
}
.main img{
    margin-top: -100px;
    margin-bottom: -50px;
}
textarea{
    width: 600px;
    height: 250px;
    background: #3d3a67b3;
    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: whitesmoke;
}
.row{
    width: 600px;
    display: flex;
    align-items: center;
    gap: 20px;
}
button{
    background: #4346fb;
    color: #fff;
    font-size: 16px;
    padding: 10px 30px;
    border-radius: 33px;
    border: 0;
    outline: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
button:hover {
    background: #231452;
    transform: scale(1.02);
}
.row img{
    padding-top: 98px;
    width: 18px;
    margin-top: -150px;
    margin-bottom: -50px;
}
select{
    flex: 1;
    color: #ffff;
    background: #3d3a67b3;
    height: 40px;
    padding: 0 20px;
    outline: 0;
    border: 0;
    border-radius: 33px;
    appearance: none;
    background-image: url(/assets/images/dropdown.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position-x: calc(100% - 20px);
    background-position-y: 15px;
}

/* Media Query for Tablets */
@media (max-width: 768px) {
    textarea {
        width: 90%;
        height: 200px;
    }
    .row {
        width: 90%;
    }
    .main img {
        width: 80%;
        margin-top: -50px;
        margin-bottom: -30px;
    }
    .row img {
        width: 21%;
        margin-top: -31px;
        margin-bottom: -30px;
        padding-top: 0;
    }
}

/* Media Query for Mobile Phones */
@media (max-width: 480px) {
    textarea {
        width: 85%;
        height: 180px;
        padding: 15px;
    }
    .row {
        width: 85%;
        flex-direction: column;
        gap: 15px;
    }
    select {
        width: 100%;
        padding: 10px 38px;
        background-position-x: calc(100% - 20px);
        background-position-y: 13px;
    }
    button {
        width: 100%;
        justify-content: center;
    }
    .main img {
        width: 90%;
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .row img {
        width: 5%;
        margin-top: -1px;
        margin-bottom: 0px;
    }
}