@import url(index.css);
@import url(minutes.css);
@import url(create.css);
@import url(admin.css);
@import url(modal.css);
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #888888;
    font-family: 微軟正黑體;
    margin: 1.3%;
}

.forms-container {
    width: auto;
    height: inherit;
    background-color: #c8c8c8;
    border-radius: 20px;
    border: #373737 solid 1px;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.title {
    font-size: 40px;
    color: #373737;
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.input-field {
    max-width: 380px;
    width: 100%;
    height: 55px;
    background-color: white;
    margin: 10px 0;
    border-radius: 15px;
    border: #707070 solid 1px;
    display: grid;
    grid-template-columns: 15% 85%;
    padding: 0 0.4rem;
    position: relative;
}

.input-field:focus-within {
    border: #3a3a3a solid 1px;
    max-width: 388px;
    transition: 0.2s;
}

.input-field input {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: #707070;
    line-height: 1;
    font-weight: normal;
    font-size: 1rem;
    transition: 0.3s;
}

.input-field i {
    text-align: center;
    line-height: 55px;
    color: #707070;
    background: none;
    font-size: 1.5rem;
}

.input-field input:placeholder-shown {
    color: #707070;
    font-weight: lighter;
}

.btn {
    width: 100%;
    outline: none;
    padding: 14px;
    background-color: #ffffff;
    border-radius: 10px;
    border: none;
    border: #6a6a6a 1px solid;
    color: #6a6a6a;
    font-size: 26px;
    margin: 10px 10px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn.sub {
    width: 260px;
}
.btn:hover {
    border-radius: 10px;
    background-color: #9b9b9b;
    color: #ffffff;
}

.btn:active {
    transform: scale(0.98);
    box-shadow: 0, 5px;
    transform: translateY(4px);
}

/* For Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    border-radius: 5px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.25);
}
::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #707070;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #aaaaaa;
}

.publicTable {
    /* border: 2px solid black; */
    width: 100%;
    margin: 0px;
}

.loader {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: #111113; */
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader.hidden {
    animation: fadeOut 1s;
    animation-fill-mode: forwards;
}
.loader > img {
    width: 500px;
}

@keyframes fadeOut {
    100% {
        opacity: 0;
        visibility: hidden;
    }
}
