main{
    background: #F2F6EC;
}

.title{
    display: flex;
    flex-direction: column;
}

.title img{
    align-self: center;

    margin-top: 42px;
    margin-bottom: 30px;
}

.title p{
    color: #146048;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 98.95%;

    margin: 0;
}

.form{
    margin-top: 38px;
    margin-bottom: 208px;
}

form{
    display: flex;
    flex-direction: column;

    max-width: 570px;
    margin: 0 auto;
    padding: 19px 36px 44px 36px;

    border-radius: 10px;
    background: #FAFFF1;
    box-shadow: 0 0 17px 0 rgba(206, 241, 123, 0.50), 0 4px 4px 0 rgba(0, 19, 17, 0.10);
}

label{
    color: #093628;
    font-family: "Chakra Petch", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 92%;

    margin-top: 25px;
    margin-bottom: 8px;
}

input{
    border-radius: 10px;
    background: #F2F6EC;


    height: 12px;
    padding: 18px 16px;
    border: none;

    color: #146048;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

textarea{
    display: flex;
    height: 160px;
    padding: 16px;
    align-items: flex-start;
    gap: 8px;

    border-radius: 10px;
    background: #F2F6EC;
    border: none;

    color: #146048;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;

    resize: none;
}

select{
    height: 48px;
    padding: 8px 16px;
    border-radius: 10px;
    background: #F2F6EC;
    border: none;
    cursor: pointer;

    color: rgba(9, 54, 40, 0.60);
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 98.95%;
}

select {
  appearance: none;
  background-image: url("../static/images/select_arrow.png");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

select::picker-icon {
  color: #999999;
  transition: 0.4s rotate;
}

option:first-of-type {
  border-radius: 8px 8px 0 0;
}

option:last-of-type {
  border-radius: 0 0 8px 8px;
}

option:nth-of-type(odd) {
  background: white;
}

option:hover,
option:focus {
  background: plum;
}

option{
    background: #F2F6EC;
    border: none;
}

option:hover{
    border-radius: 10px;
    background: #CEF17B;
}

.submit-btn{
    height: 48px;
    border-radius: 10px;
    background: #CEF17B;
    border: none;

    color: #093628;
    text-align: center;
    font-family: "Chakra Petch", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 92%;

    margin-top: 25px;
}

form p{
    color: rgba(20, 96, 72, 0.80);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 98.95%;
}

input[type=number]:focus, textarea:focus{
    border: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance:textfield;
}
