<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    margin: 0;
    background: linear-gradient(45deg, rgba(66, 183, 245, 0.8) 0%, rgba(66, 245, 189, 0.4) 100%);
    color: rgba(0, 0, 0, 0.6);
    font-family: 'Noto Sans TC', "Roboto", sans-serif;
    /*font-size: 14px;*/
    line-height: 1.6em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.form {
    z-index: 15;
    padding: 1.5em 2em;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    margin: 2em 1em;
    overflow: hidden;
}

.form-group {
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 20px;
}

    .form-group label {
        display: block;
        margin: 0 0 10px;
        color: rgba(0, 0, 0, 0.6);
        font-size: 16px;
        font-weight: 500;
        line-height: 1;
        text-transform: uppercase;
        letter-spacing: 0.2em;
    }

    .form-group input {
        outline: none;
        display: block;
        background: rgba(0, 0, 0, 0.1);
        width: 100%;
        border: 0;
        border-radius: 4px;
        box-sizing: border-box;
        padding: 12px 20px;
        color: rgba(0, 0, 0, 0.6);
        font-family: 'Noto Sans TC', sans-serif;
        font-size: inherit;
        font-weight: 500;
        letter-spacing: 1.2px;
        line-height: inherit;
        transition: 0.3s ease;
        text-transform: uppercase;
    }

        .form-group input:focus {
            color: rgba(0, 0, 0, 0.8);
        }

.form-button {
    margin-top: 2em;
}

.form-group button {
    outline: none;
    background: #0087d7;
    width: 100%;
    border: 0;
    border-radius: 4px;
    padding: 12px 20px;
    color: #FFFFFF;
    font-family: 'Noto Sans TC', sans-serif;
    font-size: inherit;
    letter-spacing: 2px;
    font-weight: 500;
    line-height: inherit;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

    .form-group button:hover {
        opacity: 0.8;
    }

.form-group .form-remember {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

    .form-group .form-remember input[type='checkbox'] {
        display: inline-block;
        width: auto;
        margin: 0 10px 0 0;
    }

.form-group .form-recovery {
    color: #4285F4;
    font-size: 12px;
    text-decoration: none;
}

.form-panel {
    /*padding: 2em 3em;*/
    box-sizing: border-box;
}

    .form-panel.one:before {
        content: '';
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
    }

    .form-panel.one.hidden:before {
        display: block;
        opacity: 1;
        visibility: visible;
    }

.form-header {
    margin: 0 0 1.5em;
}

    .form-header h1 {
        padding: 4px 0;
        margin: 10px 0;
        color: #4285F4;
        font-size: 24px;
        font-weight: 700;
        letter-spacing: 2px;
    }

    .form-header p {
        font-size: 16px;
        font-weight: 500;
        margin: 0;
    }

.cp-fab {
    background: #FFFFFF !important;
    color: #0066a3 !important;
}

.BDC_CaptchaDiv {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 600px) {
    .div1 {
        height: 60%;
    }
    .div2 {
        height: 40%;
    }
    .centered {
        width: 230px;
        height: 90px;
    }
}

@media screen and (min-width: 600px) {
    .div1 {
        height: 100%;
    }
    .div2 {
        height: 50%;
    }
    .centered {
        width: 400px;
        height: 180px;
    }
}
@media screen and (max-height: 500px) {
    .div1 {
        height: 100%;
    }

    .div2 {
        height: 50%;
    }

    .centered {
        width: 200px;
        height: 90px;
    }
}
</pre></body></html>