@charset "utf-8";

/* header h1 {
    text-align: left;
    font-size: 13px;
    margin-bottom: 30px;
} */

h2 {
    /* font-size: 25px;
    text-align: center;
    letter-spacing: 2px; */
    margin-bottom: 60px;
}

.form {
    max-width: 1050px;
    width: 95%;
    background-color: #ffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px #F2F0DB;
    margin: 0 auto 200px;
}

.type-radio {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
}


label {
    line-height: 50px;
    display: block;
    margin-bottom: 20px;
    font-size: 14px;
}

.datatitle {
    display: inline-block;
    width: 25%;
}

.flexlabel {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 463px;
    height: 34px;
    padding: 10px;
    /* margin-top: 20px; */
    /* border: 1px solid #ccc; */
    border-radius: 6px;
    font-size: 14px;
    background-color: #F2F0DB;
}

.inquiry-row {
    margin-top: 50px;
}

.inquiry-label {
    text-align: center;
}


.checkbox-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 5px;
}

.example {
    margin-left: 70px;
    font-size: 13px;
    white-space: nowrap;
}


/* .checkbox-group label {
    display: flex;
    align-items: center;
} */

input[type="radio"] {
    margin-right: 5px;
    vertical-align: baseline;
}

textarea {
    display: block;
    width: 700px;
    height: 80px;
    padding: 10px;
    margin-top: 5px;
    /* border: 1px solid #ccc; */
    border-radius: 6px;
    font-size: 14px;
    background-color: #F2F0DB;
    margin: 0 auto;

}



button {
    /* background-color: var(--accentcolor); */
    color: #fff;
    padding: 1em 8em;
    /* border: none; */
    border-radius: 3px;
    font-size: 16px;
    cursor: pointer;
    display: block;
    margin: 80px auto 20px;
    transition: background-color 0.3s;
    transition: all 0.3s;
    color: #8e8e8e;
    font-size: 16px;
    color: #ffffff;
    background-color: #00496D;
    width: 300px;
    height: 70px;
}

button:hover {
    background-color: #005f73;
}


/* ---responsible design for iPad pro--- */
@media screen and (max-width: 1024px) {

    input[type="text"],
    input[type="email"],
    input[type="tel"] {
        width: 300px;
    }

    textarea {
        width: 500px;
    }
}

/* ---responsible design for iPad pro--- */

/* ---responsible design for iPhone SE--- */
@media screen and (max-width: 375px) {
    .form {
        padding: 15px;
        margin: 0 auto 100px;
    }

    .flexlabel {
        flex-direction: column;
        align-items: 10px;
        margin-top: 15px;
    }

    .datatitle {
        width: 250px;
        font-size: 14px;
        margin-bottom: 5px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"] {
        width: 250px;
        font-size: 14px;
    }

    textarea {
        width: 100%;
        height: 120px;
        font-size: 14px;
    }

    .checkbox-group {
        flex-direction: column;
        gap: 10px;
        width: 250px;
        margin: 0 auto;

    }

    .example {
        width: 250px;
        display: block;
        margin-left: 0px;
        margin-top: 1px;
        white-space: normal;
    }


    .inquiry-label {
        font-size: 14px;
        text-align: left;
        margin-left: 40px;
    }

    /* bottom {
        width: 100%;
        min-width: 80px;
        height: 60px;
        font-size: 16px;
        margin: 40px auto 20px;
    } */

    button {
        width: 200px;
        text-align: center;
        font-size: 14px;
        padding: 1em 0em;
        white-space: nowrap;
        height: auto;
        margin: 40px auto 20px;
    }

    textarea {
        width: 250px;
        height: 50px;
    }

    label {
        line-height: 1.3;
    }


}