* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.main_section {
    padding-left: 4%;
    padding-right: 4%;
    background-color: #7f5a83;
    background-image: linear-gradient(315deg, #70c1fc 0%, #0d324d 74%);
    width: 100%;
    height: 100vh;
}

.left_side,
.right_side {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.left_side img {
    width: 200px;
}

.left_side h1 {
    font-size: 45px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
    text-transform: capitalize;
}

.left_side h1 span {
    color: #36A1E8;
}

.left_side p {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.right_side .right_row {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

textarea {
    width: 100%;
    height: 350px;
    background: #fff;
    color: #000;
    font-size: 15px;
    border: 0;
    outline: 0;
    padding: 20px;
    resize: none;
    margin-bottom: 30px;
    border-radius: 6px;
    box-shadow: rgba(44, 44, 44, 0.459) 0px 7px 29px 0px;
}

textarea::placeholder {
    font-size: 16px;
    color: #000;
    letter-spacing: 1px;
}

button {
    background: #010758;
    color: #fff;
    font-size: 16px;
    padding: 10px 30px;
    border: 0;
    outline: 0;
    display: flex;
    height: 50px;
    align-items: center;
    cursor: pointer;
}

button img {
    width: 20px;
    margin-right: 10px;
}

select {
    flex: 1;
    color: #fff;
    background: #010758;
    height: 50px;
    padding: 0 20px;
    outline: 0;
    border: 0;
    appearance: none;
    background-image: url('./assets/dropdown.png');
    background-repeat: no-repeat;
    background-size: 22px;
    background-position-x: calc(100% - 20px);
    background-position-y: 14px;
}