@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500&display=swap");
body {
    font-family: "Rubik", sans-serif;
    font-weight: 400;
}
body {
    margin: 0;
    min-width: 340px;
    background-color: #E8EFFF;
    text-align: center;
    color: black;
}
.slide {
    position: relative;
    animation: slide-in 0.5s ease-out;
}
@keyframes slide-in {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
.page {
    background: #e2e2e5;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: absolute;
    place-content: center;
    width: 100%;
}
@media (max-width: 767px) {
    .page {
        height: auto;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
}
.container {
    display: flex;
    height: 320px;
    margin: 0 auto;
    width: 640px;
}
@media (max-width: 767px) {
    .container {
        flex-direction: column;
        height: 630px;
        max-width: 300px;
    }
}
.left {
    background: rgb(255, 255, 255);
    height: calc(100% - 40px);
    top: 20px;
    position: relative;
    width: 50%;
}
@media (max-width: 767px) {
    .left {
        margin: auto;
        top: 10px;
        width: 80%;
        height: 280px;
    }
}
.login {
    font-size: 24px;
    font-weight: 900;
    margin: auto;
    margin-top: 30px;
}

.right {
    position: relative;
    background: #ffffff;
    box-shadow: 0px 0px 40px 16px rgba(0, 0, 0, 0.4);
    color: #000000;
    position: relative;
    width: 300px;
}
@media (max-width: 767px) {
    .login {
        font-size: 20px;
        font-weight: 900;
        margin: auto;
        margin-top: 30px;
    }
    .eula {
        color: #999;
        font-size: 12px;
        line-height: 1.5;
        margin: 0px;
    }
    .right {
        flex-shrink: 0;
        margin: auto;
        height: 90%;
        width: 90%;
        max-height: 350px;
    }
}
.form {
    position: relative;
    margin: auto;
    width: 80%;
    padding: 0;
}

input {
    margin-top: 20px;
    background: transparent;
    border: solid 2px rgb(0, 0, 0);
    border-radius: 18px;
    color: #000000;
    background-color: rgb(255, 255, 255);
    font-size: 15px;
    padding: 0 0 0 10px;
    height: 30px;
    line-height: 30px;
    width: 90%;
}
input::-moz-focus-inner {
    border: 0;
}
.copyright {
    font-size: 14px;
    bottom: 5px;
}

.login-button {
    margin-top: 20px;
    border: solid 2px rgb(0, 0, 0);
    border-radius: 18px;
    color: #ffffff;
    background-color: rgb(0, 0, 0);
    font-size: 15px;
    padding: 0 0 0 10px;
    height: 32px;
    line-height: 30px;
    width: 95%;
    transition: 0.4s;
    cursor: pointer;
}

.login-button:hover {
    border: solid 2px #007BFF;
    background-color: #007BFF;
}

.leave-button {
    position: absolute;
    left: 5px;
    bottom: 5px;
    border: 1px solid #007BFF;
    background-color: #007BFF;
    color: #ffffff;
    padding: 3px 5px;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.leave-button:hover {
    border: 1px solid #f2f2f2;
    color: #f2f2f2;
}

.color-change {
    color: #FF971D;
    animation: color-change 30s ease-in-out infinite;
}

@keyframes color-change {
    0% {
        color: black;
    }
    10% {
        color: #FF971D;
    }
    15% {
        color: black;
    }
    18% {
        color: #FF971D;
    }
    50% {
        color: #FF971D;
    }
    95% {
        color: #FF971D;
    }
    100% {
        color: black;
    }
}
@keyframes leave-button-animation {
    to {
        opacity: 0.1;
        transform: translate3d(0, -1rem, 0);
    }
}
.leave-button-animation {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 40px;
    left: 5px;
}
.leave-button-animation > div {
    width: 10px;
    height: 10px;
    margin-left: 3px;
    margin-bottom: -20px;
    background: #007BFF;
    border-radius: 0;
    animation: leave-button-animation 0.6s infinite alternate;
}
.leave-button-animation > div:nth-child(2) {
    animation-delay: 0.2s;
}
.leave-button-animation > div:nth-child(3) {
    animation-delay: 0.4s;
}
