@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;700&display=swap');
#FormArea {
    width: 100%;
    background-color: #00d9ae;
    height: auto;
    background-size: 1920px auto;
    background-position: center bottom;
    position: relative;
    z-index: 0;
    padding: 2.8em 0;

}

#FormArea h4 {
    font-family: 'Noto Sans TC', sans-serif;
    font-size:2.5em;
    line-height: 1.2em;
    font-weight: 700;
    text-align: center;
    padding-top: 3%;
    margin-bottom: 5%;
    color: #3f3f3f;
}

#FormArea h5 {
    text-align: center;
    font-size: 29px;
    color: #FEF043;
    margin-bottom: 20px;
    line-height: 1.4em;
}

.cont-pc{display:block;}
.cont-mb{display:none;}

.d-block {
    display:block;
}
.d-none {
    display: none;
}
@media screen and (min-width: 768px) {
    .d-md-block {
        display:block;
    }
    .d-md-none {
        display:none;
    }
}

@media screen and (max-width: 768px) {
    .form-tilte h4 span {
        font-size: 0.7em;
    }
}

.Form-LR{
	display: flex;
	flex-direction: row;
	
}
.form-L {
    width: 40%;
    height: auto;
    margin-top: 0px;
    display: block;
/*    float: left;*/
}

.form-R {
    width: 55%;
    height: auto;
    display: block;
/*    float: left;*/
}
ul.form-L li {
    margin: 0px auto 3px auto;
    width: 92%;
    font-size: 1em;
    line-height: 2;
    display: table;
}

ul.form-L li .input-title {
    display: inline-block;
    width: 35%;
    background-color: rgba(255, 255, 255, .9);
    height: 40px;
    text-align: center;
    line-height: 34px;
    border: 3px solid #3f3f3f;
    border-right: none;
    color: #00aaff;
    font-size: calc(15px + (18 - 15) * ((100vw - 1000px)/ (1920 - 1000)));
    float: left;
}

input,
select {
    margin: 0;
    padding: 0 0.5em;
    height: 44px;
    outline: 0;
    vertical-align: middle;
    border: 1px solid #FFF;
    background-color: rgba(0, 0, 0, .5);
    width: 99%;
    border-radius: 5px;
    color: #FFF;
}

input[type="radio"],
input[type="checkbox"] {
    width: 1.25em;
    height: 1.25em;
    padding: 0;
    margin: 3px 0.25em 5px 0.25em;
    border: 1px solid #bebebe;
}

select[name="ct1"] {
    margin: 0px;
    float: left;
}

select[name="ct2"] {
    margin-left: 4px;
}

select[name="ct1"],
select[name="ct2"] {
    width: 49%;
}

ul.form-L li input,
ul.form-L li select {
    font-size: calc(15px + (18 - 15) * ((100vw - 1000px)/ (1920 - 1000)));
}

ul.form-L li input,
ul.form-L li select {
    height: 40px;
    color: #FFF;
    border-radius: 0px;
    border: 3px solid #3f3f3f;
    background-color:#00aaff;
}

ul.form-L li input[type="text"],
ul.form-L li input[type="email"],
ul.form-L li input[type="tel"] {
    width: 64%;
    float: left;
    border-left: none;
}

.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

button[type="submit"].btn,
.btn {
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
/*    border: 2px solid #FFF;*/
/*    background-color: rgba(0, 0, 0, .5);*/
    color: #2468c9;
    cursor: pointer;
    display: block;
    align-self: center;
    font-weight: 400;
    line-height: 1;
    margin: 20px auto;
    padding: 5px 87px;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
}

button[type="submit"].check_btn,
.check_btn {
    -webkit-transition: box-shadow 500ms ease-in-out, color 5000ms ease-in-out;
    transition: box-shadow 500ms ease-in-out, color 5000ms ease-in-out;
}

ul.form-L li button[type="submit"] {
    padding: 0;
    width: 100%;
}
.register{
    background-color: #ffd15f;    
    transition: .3s;
}
.register:hover{
    background-color: #f97091;
}
#FormArea ul.form-L li button[type="submit"] h5 {
    font-size: calc(20px + (24 - 20) * ((100vw - 1000px)/ (1920 - 1000)));
    margin: 10px auto;
    color: #000000;
    font-family: Arial, "LiHei Pro", "Microsoft JhengHei", "PMingLiU", sans-serif;
}

#FormArea ul.form-L li button[type="submit"]:hover img {
    content: url("../images/register-hover.png");
}

@media screen and (max-width:768px) {
    #FormArea h4{
        font-size:2.2em;
    }
    #FormArea h5 {
        font-size: 22px;
    }
	.Form-LR{
		flex-direction: column;
	}
    .form-L {
        float: none;
        width: 80%;
        margin: 0px auto 20px auto;
    }
    .form-R {
        float: none;
        width: 80vw;
        margin: auto;
		padding-bottom: 3%;
    }
    ul.form-L li {
        margin: 0px auto 8px auto
    }
    ul.form-L li .input-title,
    ul.form-L li input,
    ul.form-L li select {
        font-size: calc(14px + (16 - 14) * ((100vw - 320px)/ (640 - 320)));
    }
    input,
    select {
        width: 99.4%
    }
    ul.form-L li input[type="text"],
    ul.form-L li input[type="email"],
    ul.form-L li input[type="tel"] {
        width: 61%;
    }
    select[name="ct2"] {
        margin-left: 8px;
    }
}


@media screen and (max-width:639px) {
    ul.form-L li input[type="text"],
    ul.form-L li input[type="email"],
    ul.form-L li input[type="tel"] {
        width: 64%;
    }
    select[name="ct2"] {
        margin-left: 3px;
    }
    input,
    select {
        width: 98.5%;
    }
    #FormArea h4{
        font-size:1.8em;
    } 
	.gift{
		max-width:100%;
	}
}


/* FormArea CSSStyle END*/