@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);

:root {
  --main-color: #14AA60;
}

html, body{
    font-family: -apple-system, BlinkMacSystemFont, "Noto Sans TC", "PingFang", "Microsoft Jheng Hei", "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    height: 100%;
}

body {
    height: 100%;
    margin: 0px;
    display: flex;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background-image: url(../images/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.time-zone {
    width: 100%;
    max-width: 500px;
    padding: 3rem;
    /* margin: auto auto auto 100px; */
}

.time-zone .now-time {
    color: #54c58e;
    font-size: 80px;
    font-weight: bold;
    text-shadow: 2.5px 2.5px #222;
}

.time-zone .now-date {
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    text-shadow: 2.5px 2.5px #222;
}

main, form {
    width: 100%;
    max-width: 420px;
    padding: 3rem;
    /* margin: auto 10rem auto auto; */
    background-color: #f7ffff;
    border-radius: 1rem;
    /* border: 5px solid var(--main-color); */
    background: rgb(255 255 255 / 50%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgb(255 255 255 / 65%);
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width:640px) {

    .lo-login {

        > .px-5 {
            padding: 15px !important;
        }
    }
    main, form {
        padding: 15px;
        max-width: 100%;
    }
}

.validation-summary-errors ul {
    padding: 0;
    margin: 0;
    text-align: left;
}

.copyright {
    position: fixed;
    bottom: 15px;
    text-align: center;
    color: white;
}