body,input {
    font-family: Arial, Microsoft JhengHei Revise, "微軟正黑體", "Microsoft JhengHei", "新細明體", "PMingLiU", sans-serif;
    font-size: 14px;
}

html {
    background: none;
}

body {
    background-attachment: fixed;
    background-image: url("../images/OP10T02/bg.jpg");
    background-position: 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.area-box {
    width: 600px;
    height: 450px;
    background-color: rgba(255,255,255,.95);
    background-image: url("../images/OP10T02/area-box-bg.png");
    background-position: 20px center;
    background-repeat: no-repeat;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
    border-radius: 40px 0 40px 40px;
    margin: auto;
    padding: 50px 40px 50px 300px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

h1 {
    width: 100%;
    color: #003171;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

h2 {
    width: 100%;
    margin-top: 30px;
}

.msg {
    color: #C00;
    padding-top: 20px;
    text-align: left;
}

/*****輸入欄位*****/
.field {
    width:100%;
    margin-top: 30px;
}
.field li {
    width:100%;
    margin-bottom:30px; 
    position:relative;
}

.field li .stander_calendar {
    width: 100%;
}

.field li .stander_calendar .calendar_icon {
    top: 11px;
    right: 4px;
}

.field li .stander_calendar .calendar_function_box {
    top: 8px;
    right: 32px;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .field li .stander_calendar .calendar_icon {
        top: 12px;
        right: 6px;
    }
    
    .field li .stander_calendar .calendar_function_box {
        top: 8px;
        right: 32px;
    }
}

.field li input[type="text"],.field li input[type="password"],.field li input[type="tel"] {
    width:100%;
    height:40px;
    background-color: transparent;
    border:none;
    border-bottom:1px solid #EDEDED;
    box-shadow: none;
    padding:15px 10px 5px 5px;
}

.field li .name {
    color:#999; 
    position:absolute;
    pointer-events:none;
    top:10px;
    left:5px;
            transition:0.2s ease all; 
    -moz-transition:0.2s ease all; 
    -webkit-transition:0.2s ease all;
}

.field li input[type="text"]:focus ~ .name,
.field li input[type="text"]:valid ~ .name,
.field li input[type="password"]:focus ~ .name,
.field li input[type="password"]:valid ~ .name,
.field li .name.focus {
    color:#52ABFF;
    font-size:12px;
    top:-5px;
}

.field li select:focus ~ .name {
    color:#52ABFF;
}
.field .name.active {
    color:#52ABFF;
    
}
.field .name.select {
    color:#52ABFF;
    font-size:12px;
    top:-5px;
}

.field li .bar {
    width:100%;
    position:relative;	
}

.field li .bar:before,
.field li .bar:after {
    width:0;
    height:2px;
    background:#52ABFF;
    content:"";
    position:absolute;
    bottom:0;
            transition:0.2s ease all; 
        -moz-transition:0.2s ease all; 
    -webkit-transition:0.2s ease all;
}

.field li .bar:before {
    left:50%;
}

.field li .bar:after {
    right:50%; 
}

.field li input:focus ~ .bar:before,
.field li input:focus ~ .bar:after {
    width:50%;
}
.field li .bar.active::before,.field li .bar.active::after{
    width:50%;
}

.btn {
    margin-top: 50px;
    text-align: center;
}

.btn input {
    background-color: #52ABFF;
    border: none;
    border-radius: 20px;
    color: white;
    padding: 10px 30px;
            transition:0.2s ease all; 
        -moz-transition:0.2s ease all; 
    -webkit-transition:0.2s ease all;
}

.btn input:hover {
    background-color: #6EBEFF;
}

@media screen and (max-width:620px) {
    .area-box {
        width: calc(100% - 20px);
        background-image: none;
        margin: 10px;
        padding: 40px;
        position: static;
    }
}