.login-page {
    width: 360px;
    margin: auto;
    position: absolute;
    opacity: 1;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.login-page h1 {
    font-size: 30px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    padding: 0px 0px 20px 0px;
    color: #09c6ff;
}

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

.form {
    position: relative;
    background: #ffffff5e;
    max-width: 360px;
    margin: 0 auto 100px;
    padding: 45px;
    text-align: center;
    box-shadow: 0 10px 25px 0 rgba(255, 122, 0, 0.1), 0 5px 10px 0 rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.form:hover {
    box-shadow: 0 15px 30px 0 rgba(255, 122, 0, 0.2), 0 10px 15px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

h5 {
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
    color: #666;
    font-weight: 500;
}

.form input {
    font-family: 'Roboto', sans-serif;
    outline: 0;
    background: #ffffff;
    width: 100%;
    border: 0;
    margin: 0 0 15px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 14px;
    border: 1px solid #eee;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.form input:focus {
    border-color: #09c6ff;

    box-shadow: 0 0 0 2px rgba(255, 122, 0, 0.1);
}

.form button {
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    outline: 0;
    background: #09c6ff;

    width: 100%;
    border: 0;
    padding: 15px;
    color: #FFFFFF;
    font-size: 14px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.form button:hover,
.form button:active,
.form button:focus {
    background: #09c6ff;

    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(255, 122, 0, 0.2);
}

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

.form .message a {
    color: #09c6ff;

    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.form .message a:hover {
    color: #09c6ff;
}

.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: #09c6ff;

    text-decoration: none;
}

.container .info span .fa {
    color: #09c6ff;

}

body {
    position: absolute;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background-position: 50% 0;
    background-size: cover;
    background-color: #f7f7f7;

    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Roboto', sans-serif;
}



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-page {
    animation: fadeIn 0.6s ease-out forwards;
}