@charset "UTF-8";

body {
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
}

div#background {
    background: linear-gradient(90deg, #00C9FF 0%, #73D376 100%);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: -1;
}
.locked-bg {
    background: linear-gradient(90deg, #ffae00 0%, #d3401b 100%) !important;
}

#identification {
    width: 240px;
    height: 350px;
    padding: 30px;
    margin-left: calc((100vw - 300px) / 2);
    text-align: center;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    margin-top: calc((100vh - 500px) / 2);
    box-shadow: 2px 2px 30px #333;
    z-index: 100;
}

#identification h1 {
    font-size: 40px;
}
/* 
#identification * {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
} */

#identification input {
    text-align: center;
    padding: 10px;
    width: calc(100% - 30px);
    margin: 10px 0;
}

#connect {
    width: 100%;
    padding: 10px;
    color:#fff;
    border: none;
    border-radius: 3px;
    background-color: #17a2b8;
    cursor: pointer;
    margin-top: 20px;
}

#bo {
    width: 100%;
    padding: 10px;
    color:#fff;
    border: none;
    border-radius: 3px;
    background-color: #cc6224;
    cursor: pointer;
    margin-top: 20px;}

div#forgot-password, div#return {
    width: 100%;
    margin-top: -30px;
    text-align: center;
}
div#forgot-password a {
    color: #666;
}

.fade {
    transition: opacity 0.5s ease;
    opacity: 1;
  }

.hidden {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

#activebo {
    cursor: pointer;
    margin-top: 10px;
    width: 32px;
    height: 32px;
    position: fixed;
    bottom: 5px;
    right: 5px;
}

#activebo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}