/* 定義 CSS 變量 */
:root {
    --primary-color: #0097E0;
    --background-light: #eeeeee;
    --text-color: #595959;
    --text-color-dark: #494949;
}

/* cloud service form style */

._frame1 {
    margin-top: 0;
}

.f35 {
    font-size: 2.188em;
    line-height: 1.4em;
    font-weight: 300;
}

.f20 {
    font-size: 1.250em;
    line-height: 1.7em;
    font-weight: 300;
}

.body {
    width: 100%;
    color: var(--text-color);
}

.info,
.left_info {
    width: 100%;
    background-color: var(--background-light);
    height: 560px;
    display: table;
    float: left;
    background-color: #eeeeee;
}

.input_container {
    width: 90%;
    margin: 0 auto;
    text-align: left;
    padding-top: 2%;
    line-height: 20px;
}

.input_container a,
a {
    color: var(--primary-color);
    text-decoration: none;
}

.input_container img {
    background-image: url(../images/aboutus/fail.png);
    background-position: center center;
    background-size: cover;
}

.input,
button,
textarea,
select,
option,
text,
checkbox {
    font-style: inherit;
    font-weight: inherit;
    padding: 10px;
    border: 0;
    border-radius: 5px;
    font-family: roboto;
    font-size: 16px;
    line-height: 16px;
    color: var(--text-color-dark);
    resize: none;
    width: 96%;
    margin-bottom: 8px;
}

.div-inline {
    display: inline;
}

.textarea {
    resize: both;
    overflow: auto;
    width: 96%;
    height: 150px;
}

.codeimg {
    vertical-align: bottom;
    margin: 0;
}

.chk_1 {
    display: none;
}

.chk_1+label {
    border: 1px solid white;
    background-color: white;
    padding: 9px;
    border-radius: 5px;
    display: inline-block;
    position: relative;
    margin-right: 8px;
    cursor: pointer;
}

.chk_1:checked+label {
    background-color: white;
}

.chk_1:checked+label:after {
    content: '\2714';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 1.4em;
    padding-top: 1px;
    vertical-align: text-top;
}

.input[type="submit"] {
    cursor: pointer;
    padding: 1.5%;
    background: var(--primary-color);
    border: none;
    border-radius: 5px;
    color: white;
    width: 25%;
}

input[type="checkbox"] {
    background-color: #fff;
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.iti {
    display: block;
    width: calc(96% + 20px);
    margin-bottom: 8px;
}

.iti>input {
    width: 100%;
}

/* Responsive Design */
@media only screen and (max-width: 1366px) {
    .f20 {
        font-size: 1.32em;
    }
}

@media only screen and (max-width: 1024px) {
    .f35 {
        font-size: 2em;
    }

    .f20 {
        font-size: 1.3em;
    }
}

@media only screen and (max-width: 768px) {
    .body {
        overflow: hidden;
        background-color: var(--background-light);
    }

    .info {
        float: none;
    }

    .infoleft {
        width: 100%;
        float: left;
        background-color: #eeeeee;
    }

    .input_container {
        width: 80%;
        margin: 4% 9%;
    }

    .div-inline {
        display: block;
    }

    .textarea {
        resize: none;
    }

    .codeimg {
        height: 40px;
    }

    .input[type="submit"] {
        padding: 15px 16px;
        margin: 20px 0 8px 0;
        width: 100%;
    }

    .f35 {
        font-size: 2em;
    }

    .f20 {
        font-size: 0.9em;
    }
}