﻿input,select,textarea,label
{
    font-family:"微軟正黑體";
    font-size:18pt;
    font-weight:900;
}

input{
	padding: 5px;
	font-size: 18pt;
	text-shadow: 0px 1px 0px #fff;
	outline: none;
	background: -webkit-gradient(linear, left top, left bottom, from(#bcbcbe), to(#ffffff));
	background: -moz-linear-gradient(top,  #bcbcbe,  #ffffff);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#bcbcbe', endColorstr='#ffffff');
    background:-ms-linear-gradient( top, #bcbcbe, #ffffff);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border: 1px solid #717171;
	-webkit-box-shadow: inset 1px 1px 0px #efefef ;
	-moz-box-shadow:inset 1px 1px 0px #efefef;
	box-shadow:inset 1px 1px 0px #efefef;
}
input:disabled
{
    background:rgba(10%,10%,10%,0.5);
}

input:focus,input:focus {
	-webkit-box-shadow:inset  0px 0px 5px #007eff;
	-moz-box-shadow:inset  0px 0px 5px #007eff;
	box-shadow:inset  0px 0px 5px #007eff;
}

::-webkit-input-placeholder { /* WebKit browsers */
    color: rgba(64, 33, 18, 0.5);
    text-shadow: 1px 1px 2px #FFF, 0 0 0 #000;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: rgba(64, 33, 18, 0.5);
    text-shadow: 1px 1px 2px #FFF, 0 0 0 #000;
}
::-ms-input-placeholder { /* Internet Explorer 10+ */
    color: rgba(64, 33, 18, 0.5);
    text-shadow: 1px 1px 2px #FFF, 0 0 0 #000;
}

input[type=button],
input[type=submit],
button
{
    color: #065ab0;
    -webkit-border-radius: 20px;
	-moz-border-radius:20px;
	border-radius: 20px;
    padding:5px 10px 5px 10px;
    background: -webkit-gradient(linear, left top, left bottom, from(#78E3ED), to(#55BEF2));
	background: -moz-linear-gradient(top,  #78E3ED, #55BEF2);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#78E3ED', endColorstr='#55BEF2');
	background:-ms-linear-gradient( top, #78E3ED, #55BEF2);
    text-shadow: 1px 1px 2px #FFF, 0 0 0 #000;
    -moz-box-shadow:inset 2px 2px 3px rgba(100%,100%,100%,0.6),2px 2px 5px rgba(10%,10%,30%,0.5);
    -webkit-box-shadow:inset 2px 2px 3px rgba(100%,100%,100%,0.6),2px 2px 5px rgba(10%,10%,30%,0.5);
    box-shadow:inset 2px 2px 3px rgba(100%,100%,100%,0.6),2px 2px 5px rgba(10%,10%,10%,0.5);
}
input[type=button]:hover,
input[type=submit]:hover,
button:hover
{
    cursor:pointer;
}

input[type=button]:active,
input[type=submit]:active,
button:active
{
        background: -webkit-gradient(linear, left top, left bottom, from(#78E3ED), to(#55BEF2));
	background: -moz-linear-gradient(top,  #78E3ED, #55BEF2);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#78E3ED', endColorstr='#55BEF2');
	background:-ms-linear-gradient( top, #78E3ED, #55BEF2);
	-moz-box-shadow:inset 2px 2px 2px rgba(20%,20%,40%,0.6);
    -webkit-box-shadow: inset 2px 2px 2px rgba(20%,20%,40%,0.6);
    box-shadow:inset 2px 2px 2px rgba(20%,20%,40%,0.6);
}

label
{
    font-family:微軟正黑體;
    font-weight:900;
    white-space: nowrap;
    font-size:18pt;
        color: white;
    text-shadow: 1px 0px 3px rgba(0,0,0,0.4),
                 3px 0px 13px rgba(0,0,0,0.1),
                 9px 0px 23px rgba(0,0,0,0.1);
    display: inline;
}


.regular-checkbox {
    display: none;
}
 
.regular-checkbox + label 
{
    vertical-align:middle;
    margin:.5em;
    background-color: #fafafa;
    border: 1px solid #cacece;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
    padding: 9px;
    border-radius: 3px;
    display: inline-block;
    position: relative;
}
 
.regular-checkbox + label:active, .regular-checkbox:checked + label:active {
    box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}
 
.regular-checkbox:checked + label {
    background-color: #e9ecee;
    border: 1px solid #adb8c0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1);
    color: #007eff;
}
 
.regular-checkbox:checked + label:after {
    content: '\2714';
    font-size: 14px;
    position: absolute;
    top: 0px;
    left: 3px;
    color: #007eff;
}
 
 
.big-checkbox + label {
    padding: 18px;
}
 
.big-checkbox:checked + label:after {
    font-size: 28px;
    left: 6px;
}
 
.tag {
    font-family: Arial, sans-serif;
    width: 200px;
    position: relative;
    top: 5px;
    font-weight: bold;
    text-transform: uppercase;
    display: block;
    float: left;
}
 
.radio-1 {
    width: 193px;
}
 
.button-holder {
    float: left;
}
 
/* RADIO */
 
.regular-radio {
    display: none;
}
 
.regular-radio + label {
    -webkit-appearance: none;
    background-color: #fff;
    border: 1px solid #cacece;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
    padding: 9px;
    border-radius: 50px;
    display: inline-block;
    position: relative;
}
 
.regular-radio:checked + label:after {
    content: ' ';
    width: 12px;
    height: 12px;
    border-radius: 50px;
    position: absolute;
    top: 3px;
    background: #007eff;
    box-shadow: inset 0px 0px 10px rgba(0,0,0,0.3);
    text-shadow: 0px;
    left: 3px;
    font-size: 32px;
}
 
.regular-radio:checked + label {
    background-color: #e9ecee;
    color: #fff;
    border: 1px solid #adb8c0;
    -moz-box-shadow: 0 1px 2px rgba(0,0,0,0.05),
                     inset 0px -15px 10px -12px rgba(0,0,0,0.05), 
                     inset 15px 10px -12px rgba(255,255,255,0.1), 
                     inset 0px 0px 10px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.05), 
                        inset 0px -15px 10px -12px rgba(0,0,0,0.05), 
                        inset 15px 10px -12px rgba(255,255,255,0.1), 
                        inset 0px 0px 10px rgba(0,0,0,0.1);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05), 
                inset 0px -15px 10px -12px rgba(0,0,0,0.05), 
                inset 15px 10px -12px rgba(255,255,255,0.1), 
                inset 0px 0px 10px rgba(0,0,0,0.1);
}
 
.regular-radio + label:active, .regular-radio:checked + label:active {
    box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}
 
.big-radio + label {
    padding: 16px;
}
 
.big-radio:checked + label:after {
    width: 24px;
    height: 24px;
    left: 4px;
    top: 4px;
}