@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    background-color: rgb(174, 174, 174);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    font-family: "Montserrat", sans-serif;
    background-size: 200% 200%;
    background: radial-gradient(#ffffff 0%, #dedede 20%, #dedede 80%, #b8b8b8 100%);
}

#bg-login {
    background-image: url("./dots_v2.png");
    display: flex;
    height: 100%;
    width: 100%;
    z-index: -50;
    position:absolute;
}

#home{
    position:absolute;
    left:50%;
    width:100px;
    margin: 20px 0 0 -50px;
    text-align:center;
    color:#aeaeae;
    text-decoration: none;
}

#home:hover{
    color:#1890ff;
}

/* #region-container{
    bottom:0;
    right:0;
    position:absolute;
    padding: 15px;
    margin: 20px;
    opacity: 0.5;
    display:flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(182, 182, 182, 0.386);
    border-radius: 20px;
}

#region-image{
    width: 100px;
}

#region-title{
    color:#171717;
    border-radius: 5px;
    margin-bottom:0px;
} */

.login {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -200px 0 0 -185px;
    width: 370px;
    height: 400px;
    background-color:rgba(247, 247, 247, 0.8);
    padding: 10px 50px 0px 50px;
    border-radius: 15px;
    align-content: center;
    box-shadow: rgba(255, 255, 255, 0.25) 0px 1px 1px 0px inset, rgba(255, 255, 255, 0.16) 0px 6px 12px 0px inset, rgba(8, 8, 8, 0.2) 0px 1px 2px 0px, rgba(8, 8, 8, 0.08) 0px 4px 4px 0px;
}

#atrax-logo-spider{
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -350px 0 0 -350px;
    width: 700px;
    height: 700px;
    border-radius:10px;
    background-size: 200% 200%;
    fill:rgb(214, 214, 214);
    z-index: -1;
    transition:0.4s ease;
    opacity: 0.2;
}   

#logo-container{
    padding: 0 15px 60px 15px;
    width: 90%;
    justify-self:center;
}

#forgot-password{
    display:block;
    font-size:12px;
    margin: 0 0 30px 0;
    cursor:pointer;
    transition: 0.3s;
}

#forgot-password:hover{
    color:#1890ff;
}

.btn {
    margin-bottom: 0;
    color: #333333;
    text-align: center;
    background-color: #3ca1ff;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    border: 1px solid #e6e6e6;
    cursor: pointer;
    padding: 9px 14px;
    font-size: 16px;
    font-weight:500;
    line-height: normal;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #ffffff;
    width: 100%;
    display: block;
    font-family: "Montserrat", sans-serif;
    transition: 0.3s;
}

.btn:hover,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled] {
    background-color: #1890ff;
}

.btn:hover {
    color: #ffffff;
    text-decoration: none;
    background-color: #1890ff;
    background-position: 0 -15px;
}

#username-input-container{
    display:inline-block;
}


input {
    display:inline-block;
    width: 100%;
    margin-bottom: 10px;
    background: rgb(213, 213, 213);
    border: none;
    outline: none;
    padding: 10px;
    font-size: 13px;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    font-family: "Montserrat", sans-serif;
    transition: 0.3s;
}

input:hover{
    background: rgb(225, 225, 225);
}

input:focus {
    background: rgb(245, 245, 245);
    transition: 0.3s;
    border: 1px solid #1890ff;
}

.login:hover ~ #atrax-logo-spider{
    opacity:0.6;
}

#error-handling{
    color:red;
    font-size:12px;
    text-align: center;
    padding-top:10px;
    margin-bottom:0px;
}