/* HTML Template */
*{
    list-style: none;
    text-decoration: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body{
    background-image: url("../assets/img/cta-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}


/* Login Form */
.form-login{
    font-size:1.5em;
    margin: 20px 0 10px 0;

    color:#ffffff;
  }
  .box{
    background:rgba(255, 255, 255, 0);
    width:300px;
    height: 260px;
    border-radius:6px;
    margin: 0 auto 0 auto;
    padding: 0px 0px 70px 0px;
    border: rgb(209, 203, 203) 1px solid; 
  }
  .input-login{
    background:#ecf0f1;
    border: #ccc 1px solid;
    border-bottom: #ccc 2px solid;
    padding: 8px;
    width:250px;
    color:#7a7878;
    margin-top:10px;
    font-size:1em;
    border-radius:4px;
    text-align: center;
  }

 #absoluteCenteredDiv{
      position: absolute;
      top:0;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
      width:400px;
      height: 300px;
      text-align: center;
 }

 #absoluteCenteredDiv .box .mismatch{
     margin-top: 15px;
     color:rgb(255, 255, 255);
     font-size: 12px;

 }