/* MAIN CSS */
/* LOGIN */

body{
    background-color: rgba(236, 240, 241,1.0);
}
input:focus, button:focus {
   outline:none !important;
}

img{
    pointer-events: none;
}

body.login{
    background: url(../images/login-background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.logo{
    display: block;
    margin-bottom: 50px;
}

.logo img{
    width: 200px;
}

.box{
    width: 400px;
    height: 300px;
    position: absolute;
    left: calc(50% - 200px);
    top: calc(50% - 350px);
}

.form-login{
    background-color: rgba(44, 62, 80,1.0);
    border-top: 5px solid rgba(189, 195, 199,1.0);
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0px 20px 45px #000;
}

input{
    background-color: #fff;
    border-radius: 5px;
    border: 0px;
    line-height: 35px;
    width: 100%;
    margin-bottom: 25px;
    padding: 10px;
    outline: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.5em;
}
button{
    outline: none;
}

.menu{
    width: 200px;
    height: 100%;
    position:fixed;
    float: left;
    left: 0px;
    top: 0px;
    background-color: rgba(255,255,255,1);
    overflow-x: hidden;
    overflow-y: auto;
}

.menu p{
    text-align: center;
    margin-top: 20px;
}

.menu img{
    opacity: 0.5;
    transition: all ease-in-out 300ms;
}

.menu:hover img{
    opacity: 1 !important;
}

.conteudo{
    width: calc(100% - 300px);
    margin-right: 50px;
    float: right;
}

  .input-group{
      width: 100%;
  }
  .input-group-addon{
      width: 35%;
      text-align: left;
  }
  .form-control {
      width: 75%;
  }