html {
    position: fixed;
    height: 100vh;
    width: 100vw;
    background-image: radial-gradient(circle at 1% 1%, rgb(195, 205, 205), transparent 100%), radial-gradient(circle at 99% 99%, rgb(195, 205, 205), transparent 100%), radial-gradient(circle at 99% 1%, rgb(220, 230, 220), transparent 100%), radial-gradient(circle at 1% 99%, rgb(222, 200, 215), transparent 100%);
}
body {
    display: flex;
    align-items: center;
    margin: auto auto;
    flex-direction: column;
    justify-content: center;
    font-size: 15px;
    gap: 50px;
    text-align: center;
    background: #333;
    padding: 0;
    font-family: "Moderat", sans-serif;
    height: 100vh;
    width: 100vw;
    font-weight: 300;
}
.container-fluid {
    height: 90%;
    width: 90%;
    max-height: 520px;
    max-width: 800px;
    border-radius: 25px;
    border: 1px solid #2F2F2F;
    padding: 10px;
    box-shadow: none;
    background: #1e1e1e;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    box-shadow: 3px 5px 6px 1px rgba(0, 0, 0, 0.2);
}
.left {
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
    position: relative;
    min-width: 220px;
}
.right {
    width: 50%;
    height: 100%;
}
.right img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0 15px 15px 0;
}
div.container-fluid > div {
    display: flex;
    flex-direction: column;
}
.left .logo {
    color: #f2f2f2;
    font-size: 14px;
    padding-bottom: 75px;
}
.left form {
    flex-direction: column;
    display: flex;
    width: 65%;
    z-index: 1;
    padding: 0 0 60px 0;
}
.left form .input {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border: 1px solid #f2f2f2;
    margin: 0 0 4px 0;
    border-radius: 6px;
    min-height: 50px;
    overflow: hidden;
}
.left form .input .text {
    color: #f2f2f2;
    font-weight: 300;
    min-width: 75px;
    font-size: 13px;
    text-align: left;
}
.left form .input input {
    border: 0;
    background-color: transparent !important;
    color: #f2f2f2;
    font-weight: 300 !important;
    padding: 5px 0;
    flex: 1;
    overflow-x: hidden !important;
}
.left form .input input:-webkit-autofill:active, .left form .input input:-webkit-autofill:hover, .left form .input input:-webkit-autofill:focus, .left form .input input:-webkit-autofill::first-line, .left form .input input:-internal-autofill-selected {
    box-shadow: 0 0 0 30px #1e1e1e inset !important;
    -moz-box-shadow: 0 0 0 30px #1e1e1e inset !important;
    -webkit-box-shadow: 0 0 0 30px #1e1e1e inset !important;
    background-color: transparent !important;
    -webkit-text-fill-color: #f2f2f2 !important;
    font-family: "Moderat", sans-serif !important;
    font-weight: 300;
}
.left form .input input:focus {
    outline: none;
    caret-color: #f2f2f2;
}
.left form .button {
    margin: 5px 0 0 0;
    flex: 1;
}
.left form .button button {
    width: 100%;
    border-radius: 6px;
    border: 0;
    padding: 14px 16px;
    text-align: left;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #1e1e1e;
}
.left form .button button > .text {
    flex: 1;
}
.left #copyright {
    position: absolute;
    bottom: 20px;
    font-size: 10px;
    color: #6c6c6c;
    text-align: center;
    z-index: 0;
    width: 100%;
    left: 0;
}
.alert {
    position:absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    max-width: 75%;
}