html,
body {
    height: 100%;
    margin: 0;
    font-family: 'Monteserrat-thin';
}

.wrapper {
    height: 100%;
    background-image: url('/assets/img/bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: darken;
}

.wrapper:after {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    left: 0;
    top: 0;
    content: "";
    background-color: rgba(0, 0, 0, 0.7);
    /* background-color: rgba(13, 39, 71, 0.7); */
}

h4 {
    margin: 0;
    text-align: center;
}

.login-container {
    z-index: 2;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    flex-wrap: wrap;
	height: 100%;
}

.login-container h4 {
    margin: 20px 0;
    color: white;
    font-size: 23px;
    font-weight: 800;

}

::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.text .video-link{
	color: #79C6E0;
}


.text .video-link a{
	color: #79C6E0;
}

.text .mail {
    color: #79C6E0 ;
}

.text .width-info {
    color: white;
    font-size: 12px;
}

.text .mail a {
    color: #79C6E0 ;
}

form {
	margin-top: 30px;
    position: relative;
}

.text-input {
    font-size: 12px;
    font-weight: 100;
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    height: 35px;
    width: 200px;
    border-radius: 20px;
    padding-left: 50px;
    border: none;
    background-color: rgba(121, 120, 120, 0.3);

}

.text-input:focus {
    outline-width: 0;
    background-color: rgba(179, 179, 179, 0.3);
    transition: color .15s ease-in-out, background-color .35s ease-in-out;
}

form i:nth-child(1) {
    color: rgba(179, 179, 179, 0.7);
    position: absolute;
    left: 20px;
    top: 20px;
}

form i:nth-of-type(2) {
    color: rgba(179, 179, 179, 0.7);
    position: absolute;
    left: 20px;
    top: 78px;
}

form .login-button {
    margin-top: 20px;
	margin-bottom: 40px;
    background-color: #f96332;
    padding: 0;
    width: 250px;
    height: 40px;
    font-size: 13px;
    font-weight: 100;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border: none;
}

.login-button:hover {
    cursor: pointer;
    background-color: #f87a50;
    transition: color .15s ease-in-out, background-color .15s ease-in-out;
}

#login-result {
    font-size: 25px;
    color:#f87a50;
}