.login-page {
    width: 360px;
    margin: auto;
    opacity: 1;
    border-radius: 4px;
}

.login-page h1 {
    font-weight: 700;
    font-family: Roboto, sans-serif;
    padding: 0px 0px 20px 0px;
    color: #41B3F5;
    background: linear-gradient(135deg, #41B3F5 0%, #17E9B3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px;
}

.login-img-filter {
    margin-bottom: 33px;
}

.form {
    position: relative;
    background: rgba(30, 61, 89, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 360px;
    padding: 45px;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    border-radius: 12px;
}

h5 {
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
}

.form input {
    font-family: sans-serif;
    outline: 0;
    width: 100%;
    margin: 0 0 15px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.form button {
    font-family: sans-serif;
    text-transform: uppercase;
    outline: 0;
    width: 100%;
    border: 0;
    padding: 15px;
    color: #FFFFFF;
    font-size: 14px;
    cursor: pointer;
    background: linear-gradient(135deg, #41B3F5 0%, #17E9B3 100%);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.form button:hover,
.form button:active,
.form button:focus {
    background: #43A047;
    background: linear-gradient(135deg, #17E9B3 0%, #41B3F5 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(65, 179, 245, 0.3);
}

.form .message {
    margin: 15px 0 0;
    color: #b3b3b3;
    font-size: 12px;
}

.form .message a {
    color: #4CAF50;
    text-decoration: none;
}

.form .register-form {
    display: none;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 300px;
    margin: 0 auto;
}

.container:before,
.container:after {
    content: "";
    display: block;
    clear: both;
}

.container .info {
    margin: 50px auto;
    text-align: center;
}

.container .info h1 {
    margin: 0 0 15px;
    padding: 0;
    font-size: 36px;
    font-weight: 300;
    color: #1a1a1a;
}

.container .info span {
    color: #4d4d4d;
    font-size: 12px;
}

.container .info span a {
    color: #000000;
    text-decoration: none;
}

.container .info span .fa {
    color: #EF3B3A;
}

body {
    position: absolute;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background-position: 50% 0;
    background-size: cover;
    background-color: #777777;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.env-viewer-Y .form {
    border-radius: 50px;
    background: #000000a8;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

.env-viewer-Y .login-page h1 {
    font-weight: 700;
    font-size: 24px;
    color: #5ed780;
}

.env-viewer-Y .form input {
    border-radius: 8px;
    background: #ffffffc2;
}

.env-viewer-Y .form button {
    border-radius: 8px;
    background: #5ED780;
}

.error-viewer-Y .form {
    border-radius: 8px;
    background: #ffffffb8;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

.error-viewer-Y .login-page h1 {
    font-weight: 700;
    font-size: 28px;
    color: #171c61;
}

.error-viewer-Y .form input {
    border-radius: 8px;
    background: #ffffffc2;
}

.error-viewer-Y .form button {
    border-radius: 8px;
    background: #171c61;
}