body {
    position: relative;
    background: #3d3f4e;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    min-width: 404px;
}

#cover {
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: url(/public/icon/logo_regolith_white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    opacity: 0.04;
}

#wrapper {
    position: absolute;
    width: 320px;
    left: calc(50% - 160px);
    top: calc(50% - 97px);
    padding: 5px;
}

#signin {
    width: 305px;
    border-radius: 5px;
    position: relative;
}

#signin::before {
    display: block;
    position: relative;
    height: 2px;
    background: rgb(52, 56, 61);
    content: "";
    top: 44px;
    margin-left: 20px;
    z-index: 1;
}

#signin input:first-of-type {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

#signin input:last-of-type {
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

#signin input[type="text"],
#signin input[type="password"],
#signin button[type="submit"] {
    background: rgb(28, 30, 33);
    box-shadow: inset -100px -100px 0 rgb(28, 30, 33);
    color: rgb(52, 56, 61);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: #787878;
    -webkit-box-shadow: 0 0 0px 1000px #000 inset;
    transition: background-color 5000s ease-in-out 0s;
}

#signin input[type="text"],
#signin input[type="password"] {
    position: relative;
    display: block;
    width: 280px;
    height: 45px;
    border: 0;
    outline: 0;
    top: -2px;
    padding: 0 0 0 20px;
    font-weight: 700;
}

#signin input[type="text"]:focus,
#signin input[type="password"]:focus {
    color: rgb(255, 255, 255);
}

#signin button[type="submit"] {
    display: block;
    position: absolute;
    width: 52px;
    height: 52px;
    color: rgb(52, 56, 61);
    border-radius: 50px;
    outline: 0;
    z-index: 2;
    top: 19px;
    right: -24px;
    border: 6px solid rgb(52, 56, 61);
    font-size: 25px;
    text-indent: 0px;
    padding-left: 9px;
    padding-bottom: 3px;
    text-align: center;
}

#signin button[type="submit"]:hover {
    color: rgb(0, 126, 165);
    text-shadow: 0 0 10px rgb(0, 126, 165);
    cursor: pointer;
}
