@charset "UTF-8";

html, body {
    height: 100%;
    width: 100%;
    /*background: radial-gradient(#c0b9c7, #b5bfcc, #c8cbc5);*/
    /*background-color: #888;*/

}

.bg {
    background: inherit;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
}
.bg-0 {
    background: url(../image/bg.jpg) center/cover no-repeat #888;
    position: absolute;
    z-index: -2;
    width: 100%;
    height: 100%;
}

.nav {
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.05);
    background-color: rgba(255, 255, 255, 0.9);
}
.nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

.login, .register {
    background-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
    margin: auto;
}
input:-webkit-autofill {
    background-color: transparent !important;
}
.login input, .login button, .register input, .register button {
    background-color: rgba(100, 100, 100, 0.5);
    display: block;
    width: 100%;
    border: none;
    outline: none;
    height: 2.25rem;
    line-height: 2.25rem;
    box-sizing: border-box;
    padding: 0 0.5rem;
    border-radius: 0.25rem;
    color: white;
}

.login button, .register button {
    background-color: #deb776;
    margin-top: 1rem;
    color: #080d00;
}

.login .logo img, .register .logo img {
    display: block;
    width: 6rem;
    height: 6rem;
    margin: auto;
}

.captcha {
    position: absolute;
    right: 1rem;
    top: 0;
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
    cursor: pointer;
}

.loading::after {
    content: '';
    animation: loading linear 3s infinite;
    height: 1.5rem;
    width: 1.5rem;
    border: 3px dotted white;
    position: absolute;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    margin: auto;
}