@media screen and (min-width:1024px){
    .contact-table br{
        display: none;
    }
    select{
        width: 70px;
        height: 30px;
        font-size: 16px;
    }
    .contact-submit{
        font-size: 18px;
    }
    .contact-submit:hover{
        color: rgb(89, 193, 189);
        background-color: white;
    }
}
@media screen and (min-width:768px) and (max-width:1024px){
    .contact-table br{
        display: none;
    }
    select{
        width: 70px;
        height: 30px;
        font-size: 16px;
    }
    .contact-submit{
        font-size: 18px;
    }
    .contact-submit:hover{
        color: rgb(89, 193, 189);
        background-color: white;
    }
}
@media screen and (max-width:767px){
    select{
        width: 70px;
        height: 30px;
        font-size: 14px;
    }
    .contact-submit{
        font-size: 16px;
    }
    /* table note */
    .contact-table th span, p span{
        font-size: 14px;
    }
}

/* table */
.contact-table{
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
    border-collapse: collapse;
}
.contact-table th{
    width: 30%;
    text-align: left;
    font-weight: normal;
}
.contact-table td{
    width: 70%;
}
.contact-table th, .contact-table td{
    padding: 10px;
    border: 1px solid rgb(207, 245, 231);
}
.table-title{
    background-color: rgb(207, 245, 231);
}
.form-text{
    width: 80%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid rgb(207, 245, 231);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.form-textarea{
    width: 80%;
    padding: 10px;
    height: 500px;
    border-radius: 5px;
    border: 1px solid rgb(207, 245, 231);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* table note */
.contact-table th span, p span{
    color: rgb(13, 76, 146);
}

/* text example */
.box{
    position: relative;
    z-index: 1;
}
.box textarea{
    padding: 10px;
    background: transparent;
}
.placeholder{
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 80%;
    font-size: 80%;
    color: gray;
    padding: 10px;
}
.placeholder.hidden{
    display: none;
}

/* policy */
.policy{
    text-align: center;
}
.policy a{
    padding-left: 5px;
    padding-right: 5px;
    text-decoration: none;
    color: rgb(13, 76, 146);
}

/* button */
#button{
    display: flex;
    justify-content: center;
    margin: 20px auto;
}
.contact-submit{
    width: 200px;
    margin: auto 20px;
    padding: 15px;
    font-weight: bold;
    color: white;
    background-color: rgb(89, 193, 189);
    border-radius: 50px;
    border: 3px solid rgb(89, 193, 189);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

/* updated on 07/29/2024 9:00 */