﻿body {
    background: #f6f5f7;
    display: flex;
    align-items: center;
    flex-direction: column;
    font-family: 微軟正黑體,Verdana,Arial,Mingliu,taipei;
    height: 100vh;
    margin: -50px 0 50px;
}

h1 {
    font-weight: bold;
    margin: 0;
    margin-bottom: 30px;
    color: #404040;
}

p {
    font-size: 14px;
    font-weight: 100;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 20px 0 30px;
}

#btnLogin {
    border-radius: 20px;
    border: 1px solid #00A53A;
    background-color: #000;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    cursor: pointer;
    margin-top: 20px;
}

#btnLogin:active {
    transform: scale(0.95);
}

#btnLogin:focus {
    outline: none;
}

#btnLogin.ghost {
    background-color: transparent;
    border-color: #FFFFFF;
}

.form {
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
    height: 100%;
    text-align: center;
}

.inputText {
    background-color: #eee;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 70%;
}

.container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    position: relative;
    overflow: hidden;
    width: 550px;
    max-width: 100%;
    min-height: 350px;
    margin-top: 200px;
}

.form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.sign-in-container {
    left: 0;
    width: 100%;
    z-index: 2;
}

footer {
    background-color: #222;
    color: #fff;
    font-size: 14px;
    bottom: 0;
    position: fixed;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 999;
}

footer p {
    margin: 10px 0;
}

footer i {
    color: red;
}

footer a {
    color: #3c97bf;
    text-decoration: none;
}