body, html {
    font-family: Arial, Helvetica, sans-serif;
    font-weight:600;
}

.main-container {
    width: 100%;
    margin: 0 auto;
}

:placeholder{
    color:#fff;
    opacity: 1;
}
*:focus{
    outline:none;
}

.main-image{
    width: 100%;
    min-height: 100vh;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
}

.forgotpassword{
    padding-top: 45px;
    text-align: center !important;
}

.registreren{
    padding-top: 45px;
    text-align: center !important;
}

.registreren a{
    font-size: 13px;

    color: white;
    text-decoration: none;

    line-height: 1.5;
}

.forgotpassword a{
    font-size: 13px;

    color: white;
    text-decoration: none;

    line-height: 1.5;
}


.main-image::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255,255,255,0.6);
}

.login-container {
    /*    width: 500px; */
    width:374px;
    border-radius: 10px;
    overflow: hidden;
    padding: 55px 55px 37px 55px;
    margin: 0 auto;
    margin-top: 3%;
    
    background: -moz-linear-gradient(top, rgb(238,117,1),rgb(113,115,117));
    background: -webkit-linear-gradient(top, rgb(238,117,1),rgb(113,115,117)) ;
}

.login-form-logo {
    display: flex;
    justify-content: center;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0 auto;
}

.login-form-title {
    font-size: 30px;
    color: #fff;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    display: block;
    padding-bottom: 34px;
    padding-top: 27px;
}

.input-container {
    width: 100%;
    position: relative;
    border-bottom: 2px solid rgba(255,255,255,0.24);
    margin-bottom: 30px;
    border: 0px;
}

.validate-input {
    position: relative;
}

/*[ Input ]*/

.login-input {
    width: 100%;
    position: relative;
    border-bottom: 2px solid rgba(255,255,255,0.24);
    margin-bottom: 30px;
}

.login-input-user {
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    border: 0px;
    display: block;
    width: 88%;
    height: 45px;
    background: transparent;
    padding: 0 5px 0 38px;
}

.login-input-google-auth{
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    border: 0px;
    display: block;
    width: 100%;
    height: 45px;
    background: transparent;
    padding: 0 5px 0 38px;
}

.login-input-email{
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    border: 0px;
    display: block;
    width: 100%;
    height: 45px;
    background: transparent;
    padding: 0 5px 0 38px;
}
.focus-login-input-email{
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.focus-login-input-email::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    transition: all 0.4s;
    background: #fff;
}

.focus-login-input-email::after {
    font-family: Material-Design-Iconic-Font;
    font-size: 22px;
    color: #fff;
    content: attr(data-placeholder);
    display: block;
    width: 100%;
    position: absolute;
    top: 6px;
    left: 0px;
    padding-left: 5px;
    transition: all 0.4s;
}
/*---------------------------------------------*/
.focus-login-input-google-auth {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.focus-login-input-google-auth::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    transition: all 0.4s;
    background: #fff;
}

.focus-login-input-google-auth::after {
    font-family: Material-Design-Iconic-Font;
    font-size: 22px;
    color: #fff;
    content: attr(data-placeholder);
    display: block;
    width: 100%;
    position: absolute;
    top: 6px;
    left: 0px;
    padding-left: 5px;
    transition: all 0.4s;
}

/* Focus input*/
.login-input-google-auth:focus {
    padding-left: 5px;
}
/* Fontawesome on input focus dat die omhoog gaat*/
.login-input-google-auth:focus + .focus-login-input-google-auth::after {
    top: -22px;
    font-size: 18px;
}
/* Voor de witregel onder username en password*/
.login-input-google-auth:focus + .focus-login-input-google-auth::before {
    width: 100%;
}

.focus-login-input-user {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.focus-login-input-user::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    transition: all 0.4s;
    background: #fff;
}

.focus-login-input-user::after {
    font-family: Material-Design-Iconic-Font;
    font-size: 22px;
    color: #fff;
    content: attr(data-placeholder);
    display: block;
    width: 100%;
    position: absolute;
    top: 6px;
    left: 0px;
    padding-left: 5px;
    transition: all 0.4s;
}

/* Focus input*/
.login-input-user:focus {
    padding-left: 5px;
}
/* Fontawesome on input focus dat die omhoog gaat*/
.login-input-user:focus + .focus-login-input-user::after {
    top: -22px;
    font-size: 18px;
}
/* Voor de witregel onder username en password*/
.login-input-user:focus + .focus-login-input-user::before {
    width: 100%;
}

/*==================================================================

/*------------------------------------------------------------------
[ Button ]*/
.container-login-button {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.login-btn {
    font-family: Arial;
    font-size: 16px;
    color: #555555;
    line-height: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    min-width: 120px;
    height: 50px;
    border-radius: 25px;
    background: -moz-linear-gradient(top, #000 , rgb(106, 108, 108));
    position: relative;
    z-index: 1;
    border: 0px;
    font-weight:600;
    transition: all 0.4s;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #F0F0F0;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #F0F0F0;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #F0F0F0;
}

.login-btn::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background-color: #fff;
    top: 0;
    left: 0;
    opacity: 1;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.login-btn:hover {
    color: #fff;
}

.login-btn:hover:before {
    opacity: 0;
}



/* Responsive css iphone */
@media only screen
and (min-device-width : 375px)
and (max-device-width : 812px) {
    .login-container{
        width:250px;
        background: -webkit-linear-gradient(top, rgb(33,147,176) , rgb(109,213,237));
        background: -moz-linear-gradient(top, rgb(10,19,136) , rgb(228,4,23));
    }

    .login-input-user{
        color:#fff !important;
    }
}

/*  */