@import url("https://fonts.googleapis.com/css?family=Raleway:400,400i,700");

:root{
    --blue:#0188DF;
    --black:#354046;
   
}

*{
    font-family: 'Roboto', sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    outline: none !important;
    text-decoration: none !important;
    font-weight: 400;
}

*::selection{
    background:var(--black);
    color: #fff;
}

html{
    height: 100%;
    margin: 0;
    font-size: 62.5%;
    overflow-x: hidden;
}

body{
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    /* z-index: 1000; */
}
a{
    color: var(--black);
}
.logo{
    font-size: 3rem;
}

.logo span{
    color: var(--blue);

}

.motdp{
    position: absolute;
    top: 50px;
    bottom: 0;
    width: 100%;
    background: #eee;
    z-index: -1;
}


.motdp_content{
    z-index: 1000;
    background: #fff;
    height: auto;
    margin-top: 15rem;
}

::-webkit-input-placeholder { /* Edge */

    font-size: 1.8rem;
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
    font-size: 1.8rem;
  }
  
  ::placeholder {
    font-size: 1.8rem;
  }

  h1{
      /* color: var(--blue); */
  }

  .alert{
      display: none;
  }

  .form-control{
      font-size: 1.8rem;
  }




