body{
    font-family: 'Open Sans', Arial;
    font-size: 12px;
    line-height: 18px;
    background: #00739B;
}

.logo{
    margin: 60px auto 0;
    padding: 15px;
    text-align: center;
}

.form-body{
    background-color: #FFFFFF;
    margin: 0 auto;
    padding: 20px 30px 15px;
    width: 380px;
    border: solid 10px #006689;
}

a{
    color: #000;
}

a:hover{
    color: #000;
    text-decoration: underline;
}

.form-body form{
    margin: 30px 0;
}

.form-actions label{
    font-size: 14px;
    font-weight: normal !important;
    margin-top: 10px;
}

.form-actions .green{
    color: #fff;
    background: #35aa47
}

.form-actions .green:hover{
    background: #1d943b;
}

.footer{
    margin-top: 20px;
    text-align: center;
    color: #fff;
}

.notify {
    border-left: 3px solid;
    margin: 20px 0;
    padding: 5px 20px;
    margin-bottom: 0 !important;
    padding-top: 10px !important;
    padding-bottom: 1px !important;
}

.notify h5{
    font-weight: bold;
    margin-bottom: 5px !important;
}

.notify-warning{
    background-color: #FCF8F2;
    border-color: #F0AD4E;
}

.notify-warning h5{
    color: #F0AD4E;
}

.notify-info{
    background-color: #F4F8FA;
    border-color: #5BC0DE;
}

.notify-info h5{
    color: #5BC0DE;
}

.notify-danger{
    background-color: #FDF7F7;
    border-color: #D9534F;
}

.notify-danger h5{
    color: #D9534F;
}

.notify-success{
    background-color: #DFF0D8;
    border-color: #3C763D;
}

.notify-success h5{
    color: #3C763D;
}

#demo-account{
    position: absolute;
    opacity: 0.8;
    top: 20px;
    left: 50%;
}

.demo-containner{
    position: relative; 
    left: -50%;
    background: #ffd800;
    border: solid 1px #d89800;
    padding: 20px;
    width: 300px;
    padding-bottom: 10px;
}

.demo-containner p{
    opacity: 1 !important;
}

/* MOBILE CSS */
@media (max-width: 480px) {
  /***
  Login page
  ***/
  .logo {
    margin-top:10px;
  }

  .form-body {
    width: 280px;
  }
  #demo-account{
    position: static !important;
    width: 100% !important;
    top: 0 !important;
    left: 0 !important;
    opacity: 1 !important;
  }
  .demo-containner{
    position: static !important;
    width: 100% !important;
    top: 0 !important;
    left: 0 !important;
    padding: 10px;
    border: none !important;
    border-bottom: solid 1px #d89800;
  }
  .demo-containner p {
    display: inline-block !important;
    margin: 2px 0;
  }
}