﻿:root {
    --colorTheme: #F48326; 
} 

html,body {height:100%;}

body {
	margin:0;
}

.container{
    width: 100%;
    margin: 0 auto;
}

/* TOP */
.top{
    margin-top: 0%;
    margin-right: 7%;
    padding-top: 1%;
}

.languageButton{
    border: none;
    background-color: inherit;
}

.languageButton img{
    width: 90%;
}

.dropdown {
    position: relative;
    display: inline-block;
    float: right;
}

.dropdown-content {
    display: none;
    position: absolute;
    
    margin-top: -5%;
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1;
  }

  .dropdown-content a {
    color: #FFFFFF;
    padding: 10% 10%;
    text-decoration: none;
    display: block;
    text-align: left;
	font-family: 'Lato', sans-serif; 
	font-weight: 400;
	font-size: 16px;
  }

  .dropdown-content a:hover {
    color: #3A3A3A;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

/* MIDDLE */
.middle{
    margin-top: 0%;
    margin-bottom: 0%;
}

form {
    background-color: #ffffff;
    width: 25%;
    position: relative;
    margin-left: 37.5%;
    margin-top: 0%;
    box-shadow: 8px 2px 12px 0px rgba(0,0,0,0.1);
}

input[type=text], input[type=password] {
    width: 100%;
    padding: 10px 10px;
    margin: 8px 0;
    display: inline-block;
    border-radius: 10px;
    box-sizing: border-box;
    
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #3A3A3A;
  }

button{
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 16px;

  color: white;
  padding: 10px 10px;
  margin: 10px 0;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  width: 100%;
}

button:hover{
    opacity: 0.8;
}

.noOutline{
    outline: none;
}

.loginbox{
    width: 100%;
    display: inline-block;
    position: relative;
}

.imgcontainer{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 6%;
}
.imgcontainer img{
    width: 45%;
}

.box1{
    margin: 3% 10%;
}

.box2{
    margin: 2% 6% 2% 6%;
    padding-bottom: 1%;
    background-color:#ffffff;
}

.fontText{
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #3A3A3A;
    text-decoration: none;

}

/* BOTTOM */
.bottom{
    display: block;
    position: relative;
    margin-top: 0%;
    margin-left: 0%;
}

.boxCopyright{
    padding-top: 0%;
    padding-bottom: 1%;
}

.copyright{
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF;
    text-decoration: none;
    text-align: center;
}




/* RESPONSIVE */


/* LAPTOP 13" MACBOOK PRO VIEWPORT */
@media screen and (min-width: 1366px){

}



/*IPAD / TABLET 1024px */
@media screen and (max-width: 1024px) {
    form {
        width: 45%;
        margin-left: 27%;
        margin-top: 0%;
        
    }

    .imgcontainer { 
        padding-top: 4%;
    }

    input[type=text], input[type=password] { 
        margin: 5px 0; 
    }

    .box2{
        margin: -2% 6% 2% 6%; 
    }

    .boxCopyright { 
        padding-bottom: 0%;
    }

}

/*IPAD / TABLET 768 PX */
@media screen and (max-width: 768px){    
    form {
        width: 60%;
        margin-left: 20%;
        margin-top: 0%;
        
    }
}


/*MOBILE DEVICE MOBILE DEVICE MOBILE DEVICE MOBILE DEVICE MOBILE DEVICE MOBILE DEVICE MOBILE DEVICE MOBILE DEVICE MOBILE DEVICE MOBILE DEVICE MOBILE DEVICE PORTRAIT*/
@media screen and (max-width: 600px) {
    form {
        width: 70%;
        margin-left: 15%;
        margin-top: 0%; 
    } 

}
 


/************* CUSTOM *************/
 
.loginButton { 
    background-color: var(--colorTheme);
    border-radius:10px;
}
 