/*  GENERAL */

*{
    margin: 0;
    padding: 0;
}

html,body{
    /* font-family: Arial, sans-serif; */
    font-size: 15px;
    height: 100%;
    margin: 0;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.content {
    min-height: calc(100% - 70px); /* 100% - header - menu */
  }

.content-inside {
    padding-bottom: 60px;
  }

h1, h2, h3, h4{
    color: #444;
}

.wrapper{
    width: 940px;
    margin: 0 auto;
    padding: 0 10px;
}

.green{
    color:#2CEC58;
}

.clear{
    clear:both;
}

small{
    font-size: 13px;
    font-style: italic;
}

/*  HEADER  */

header{
    position: relative;
    height: 70px;
}

header h1{
    float:left;
    padding-top: 15px;
}

header nav{
    float:right;
    padding-top:32px;
}

header nav ul li{
    display: inline-block;
}

header nav ul li a{
    text-transform: uppercase;
    font-weight: bold;
    margin-right: 20px;
}

@media only screen and (max-width: 650px) {
    /* For mobile phones: */
 
    header nav{
        display: none;
    }
  }

/* SIDE-MENU */

.menu{
    float: left;
    width: 100%;
    height: 40px;
    background-color: #444;
    box-shadow: 8px 8px 12px #aaa;
}

.menu form{
    padding-top: 8.5px;
}

.menu form select{
    margin-right: 30px;
}

.button-submit{
    width: 80px;
    height: 22px;
    background: #537afb;
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    margin: 0 auto;
    text-transform: uppercase;
    text-align: center;
    border-radius: 10px;
    padding: 4px;
}

.button-submit:hover{
    color:#fff;
    background: #444;
}


/*  MAIN-IMAGE  */

#main-image{
    height: 300px;
    background: url('../images/main.jpg') center;
}

#main-image h2{
    color : #FFFFFF;
    font-size: 2em;
    font-weight: normal;
    text-transform: uppercase;
    text-align: center;
    padding: 60px 0 40px 0;
    margin-bottom: 5px;
}

.button-1{
    display: block;
    width: 120px;
    height: 50px;
    background: #2CEC58;
    color: #fff;
    font-size: 20px;
    margin: 0 auto;
    line-height: 50px;
    text-align: center;
    border-radius: 15px;
    
}

.button-1:hover{
    color:#fff;
    background: #444;
}

/*  DASHBOARD  */

#dashboard{
    /* background-color: #efefef; */
    margin-top: 40px;
    padding: 45px 0; 
    text-align: center;
    /* margin-bottom: 20px; */
}


#dashboard h3{
    margin-bottom: 20px;
}

.button-2{
    display: block;
    width: 120px;
    height: 50px;
    background: #537afb;
    color: #fff;
    font-size: 20px;
    margin: 0 auto;
    line-height: 50px;
    text-align: center;
    border-radius: 15px;
    
}

.button-2:hover{
    color:#fff;
    background: #444;
}

@media only screen and (max-width: 650px) {
    /* For mobile phones: */
 
    #dashboard{
        display: none;
    }
  }


/*    CONTACT   */

#contact{
    padding: 30px 0;
    text-align: center;
}

#contact h3{
    width: 380px;
    text-transform: uppercase;
    margin: 0 auto 20px auto;
    border-bottom: 1px solid #02b8dd;
    padding-bottom: 20px;
    font-size: 1.3rem;
}

#form_login{
    margin: 5vh 25vw;
}

#btn_login{
    margin: 2vh auto;
}

@media only screen and (max-device-width : 700px) { 

    /* STYLES GO HERE */

    #form_login{
        margin: 2vh 10vw;
    }
    
    #btn_login{
        margin: 1vh auto;
    }

}

label{
    font-weight: bold;
    font-size: 20px;
    margin-right: 10px;
    color: #777;
}

input[type="text"]{
    padding: 10px;
    font-size: 20px;
    margin-right: 20px;
    border: 2px solid #ddd;
    border-radius: 3px;
}

.button-3{
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 11px;
    background-color: #2CEC58;
    border-style: none;
    border-radius: 3px;
}

.button-3:hover{
    background-color: #444;
}


/*  FOOTER  */

footer{
    height: 45px;
    margin-top: -45px;
    background-color: #444;
    position: relative;
    box-shadow: 8px 8px 12px #aaa;
}

footer h1{
    color:#fff;
    text-align: center;
    padding-top: 5px;
    margin-bottom: 0px;
    font-size: 1.1rem;
}

.copyright{
    text-align: center;
    font-weight: bold;
    /* padding-top: 10px; */
    color: #777;
    font-size: 0.7rem;
}




