a {
    color: white;
    text-decoration: underline;
}
a.btn {text-decoration: none}

.content-wrapper {
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.flex {
    display: flex;
    align-items: center;
}

.content-wrapper .title {
    width: 30%;
    background: white;
    padding: 10px;
    font-weight: 700;
    color: #4096B7;
    font-size: 16px
}
.content-wrapper .content {
    width: 30%;
    background: rgba(64, 150, 183, 0.8);
    color: white;
    padding: 10px;
}

.login-wrapper {
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.login-form {
    background: rgba(64, 150, 183, 0.2);
	border: solid 3px #848484;
    margin: 15px;
    border-radius: 15px;
    z-index: 100;
    max-width: 500px;
	max-height: 300px;
    display: none;
}
.login-form form {
    padding: 30px 100px;
}
.login-form .logo-container {
	border-radius: 13px 13px 0 0;
    background: rgba(64, 150, 183, 0.4);
    text-align: center;
}
.login-form .logo-container .logo {
    width: 50%;
}

#particles-js {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    background-image: url("../assets/login_screen_1.jpg");
    background-size: cover;
    z-index: -1;
}

.reset-pass {
    display: none;
}

.copy {
    position: absolute;
    left: 0px;
    width: 100%;
    text-align: center;
    bottom: 80px;
    color: #a8a8a8;
}

.logo-container {
    position: relative;
}
.ver {
    color: #ccc;
    position: absolute;
    right: 10px;
    bottom: 10px;
}

/* Mobil portrait *************************************************************/
@media (max-width: 767px) {
    .login-form {
        /*padding: 30px 30px;*/
        margin: 15px;
        border-radius: 15px;
    }
    .login-form form {
        padding: 30px 30px;
    }
    .logo {width: 100%;}
    
    .content-wrapper .title, .content-wrapper .content {
        width: 90%;
    }
}

/* Mobil landscape ************************************************************/
@media (max-width: 1024px) AND (orientation: landscape) {
    .logo {
        width: 35%;
    }
}