body{
    max-height: 95vh;
}

header{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
}

.logotype{
    margin-top: 2px;
    margin-left: 5px;
    position: relative;
}

.logotype img{
    width: 300px;
    height: 150px;
}

.home{
    position: absolute;
    top:5px;
    right:5px;
}

.home a{
    margin-right:10px;
    text-decoration:none;
}

.home img{
    width:30px;
    height:25px;
}

footer{
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    text-align:left;
}

footer img{
    width: 25px;
    height: 25px;
    font-size: 12px;
}

.wrapperlogin {
    padding-top: 60px;
    display: flex;
    align-items: center;
    flex-direction: column; 
    justify-content: center;
    width: 100%;
    padding-bottom: 50px;
}

.wrapperlogin-admin {
    padding-top: 20px;
    display: flex;
    align-items: center;
    flex-direction: column; 
    justify-content: center;
    width: 100%;
    min-height: 100%;
    margin-bottom: 100px;
}

#formContent {
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background: #fff;
    width: 90%;
    max-width: 400px;
    position: relative;
    padding: 0px;
    -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    text-align: center;
}

#formPhone {
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    position: relative;
    padding: 0px;
    -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    text-align: center;
}

#formFooter {
    background-color: #f6f6f6;
    border-top: 1px solid #dce8f1;
    padding: 25px;
    text-align: center;
    -webkit-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
}

.loginform{
    margin-top: 30px;
}


input[type=button], input[type=submit], input[type=reset]  {
    background-color: #d64139;
    border: none;
    color: white;
    padding: 15px 80px;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    -webkit-box-shadow: 0 10px 30px 0 rgba(203, 69, 52, 0.4);
    box-shadow: 0 10px 30px 0 rgba(203, 69, 52, 0.4);
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    margin: 5px 20px 40px 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover  {
    background-color: #d64139;
}

input[type=button]:active, input[type=submit]:active, input[type=reset]:active  {
    -moz-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -o-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
}

input[type=email] {
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    padding: 15px 32px;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 5px;
    width: 85%;
    border: 2px solid #f6f6f6;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}

input[type=text] {
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    padding: 15px 32px;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 5px;
    width: 85%;
    border: 2px solid #f6f6f6;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}

input[type=email]:focus {
    background-color: #fff;
    border-bottom: 2px solid #d64139;
}

input[type=text]:focus {
    background-color: #fff;
    border-bottom: 2px solid #d64139;
}

input[type=email]:placeholder {
    color: #cccccc;
}

input[type=text]:placeholder {
    color: #cccccc;
}

input[type=password] {
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    padding: 15px 32px;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 5px;
    width: 85%;
    border: 2px solid #f6f6f6;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}
    
input[type=password]:focus {
    background-color: #fff;
    border-bottom: 2px solid #d64139;
}
    
input[type=password]:placeholder {
    color: #cccccc;
}


*:focus {
    outline: none;
} 

.botoneye {
    background:transparent;
    padding:0;
    border:none;
    outline: none;
}

.botoneye:focus {
    background:transparent;
    padding:0;
    border:none;
    outline: none;
}

.instructions{
    display:none;
    font-size:11px;
    margin:0px;
    line-height:12px;
    text-align:left;
    margin-left: 20px;
    color: purple;
    font-style: italic;
}

.links{
    text-decoration: none;
    color:gray;
}

.links:hover{
    text-decoration: none;
    color:gray;
}

.conlink{
    display: inline-block;
}

.rightlink{
    margin-left:20px;
}

#linktype2{
    color:gray;
    display: inline-block;
    padding-top: 4px;
    margin-left:5px;
}

#linktype2:hover{
    color:gray;
}

#emailexiste{
    padding-left: 20px;
    padding-right: 20px;
}

.btn-multi{
    background: linear-gradient(to right, #f89a2f, #f31d1d);
    color:white;
    padding: 6px 20px;
    border-radius: 5px;
    border:none;
    outline:none;
    transition: all .3s ease-out;
    margin-top:20px;
    margin-bottom:20px;
}

.btn-multi:hover{
    transform: translate(0, -5px);
    box-shadow: 0 0 15px rgba(240, 151, 43, 0.495);
}

.text-multi{
    transition: all .3s ease-out;
    color: purple;
    cursor: pointer;
}

.text-multi:hover{
    transform: translate(0, -5px);
    box-shadow: 0 0 15px rgba(240, 151, 43, 0.495);
}

@media screen and (max-width: 580px) {
    .logotype img{
        width: 150px;
        height: 80px;
    }
    .wrapperlogin {
        padding-top: 150px;
        display: flex;
        align-items: center;
        flex-direction: column; 
        justify-content: center;
        width: 100%;
        padding-bottom: 100px;
    }

    .home img{
        width:30px;
        height:25px;
    }
}