.MessageBox>div:nth-child(1) {
    display: flex;
    align-items: center;
    margin-bottom: 1%;
}

.MessageBox>div:nth-child(1)>div {
    width: 12px;
    height: 45px;
    background: #0050B1;
    margin-right: 20px;
    border-radius: 50px;
}

.MessageBox>div:nth-child(1)>h2 {
    font-family: Kanit-SemiBold;
    font-size: max(32px, 2.2vw);
    color: #333333;
    font-weight: 600;
}

.MessageBox>p {
    font-family: PingFang Regular;
    font-weight: 400;
    font-size: max(16px, 0.84vw);
    color: #595959;
    margin-bottom: 3%;
}

.Message>div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.Message>div>input {
    width: 49%;
    height: 50px;
    padding: 1%;
    box-sizing: border-box;
    border: 1px solid #E5E5E5;
    background-color: #F7F7F7;
    border-radius: 2px;
    font-size: max(16px, 0.84vw);
    letter-spacing: 1px;
    font-family: PingFang Regular;
}

.Message>div>textarea {
    width: 100%;
    padding: 1%;
    box-sizing: border-box;
    border: 1px solid #E5E5E5;
    background-color: #F7F7F7;
    font-size: max(16px, 0.84vw);
    letter-spacing: 1px;
    font-family: PingFang Regular;
}

.Message>div>img {
    width: auto;
}

input:focus,
textarea:focus {
    border: 1px solid #c0c0c0 !important;
}

.Message>button {
    width: 100%;
    min-height: 50px;
    padding: 1% 0;
    font-family: Kanit-SemiBold;
    background-color: #0050B1;
    border: 1px solid #0050B1;
    color: #fff;
    font-size: max(18px, 1.25vw);
    border-radius: 5px;
    cursor: pointer;
    transition: all .6s ease;
    text-align: center;
}

.Message>button:hover {
    color: #0050B1;
    background-color: transparent;
}

input::placeholder,
textarea::placeholder {
    font-family: PingFang Regular;
    color: #999999;
    font-size: max(16px, 0.84vw);
    letter-spacing: 1px;
    font-weight: 400;
}


@media (max-width:480px){
    .verify{
        margin-bottom: 2%;
    }
    .Message>div>input{
        width: 100%;
    }
    .Message>div>input:nth-child(odd){
        margin-bottom: 10px;
    }
}