/* Import For Medieval Sharp Font */
@import url('https://fonts.googleapis.com/css2?family=MedievalSharp&display=swap');

html,
body {
    margin: 0;
    padding: 0;
    background-color: rgb(43, 43, 43);
    font-family: 'MedievalSharp', cursive;
    color: goldenrod;
    overflow: hidden;
}

.center {
    text-align: center;
}

.title {
    /* box-shadow */
    text-shadow: 0 0 4px goldenrod;
}

.login {
    text-align: center;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    -ms-transform: translate(-50%, -70%);
    -webkit-transform: translate(-50%, -70%);
}

.fillscreen {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: auto;
}

.rainbow {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    /* margin: 20px; */
    padding: 25px;
    border: solid rgb(49, 49, 49);
    border-width: 40px;
}

.box {
    width: 40px;
    height: 40px;
    clip-path: polygon(25% 0%, 50% 0%, 25% 100%, 0% 100%);
    animation: move 8000ms infinite linear;
}

.greenBox {
    background-color: rgb(255, 187, 0);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    offset-path: padding-box;
    offset-distance: 8%;
}

@keyframes move {

    0%,
    20% {
        offset-distance: 40px;
    }

    80%,
    100% {
        offset-distance: 100%;
    }
}


input[type=text] {
    background-color: #1a1a1a;
    box-sizing: border-box;
    font-family: 'MedievalSharp', cursive;
    color: goldenrod;
    text-align: center;
}

button {
    background-color: #1a1a1a;
    color: goldenrod;
    font-family: 'MedievalSharp', cursive;
    padding: 5px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    transition-duration: 0.4s;
}