/* Fonts Form Google Font ::- https://fonts.google.com/  -:: */
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500&display=swap');

/* End Fonts */
/* Start Global rules */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* End Global rules */

/* Start body rules */
body {
  /*   the main font */
  font-family: 'Roboto', sans-serif;
  background: #ffffff;
}

/* End body rules */

/* Start form  attributes */
form {
  width: 450px;
  min-height: 500px;
  height: auto;
  border-radius: 5px;
  margin: 2% auto;
  box-shadow: 0 9px 50px hsl(217.5,28.6%,94.5%);
  padding: 2%;
  background-image: linear-gradient(-225deg, #edf0f5 50%, #FFFFFF 50%);
}

/* form Container */
form .con {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
}

/* the header form form */
header {
  margin: 2% auto 7% auto;
  text-align: center;
}

/* Login title form form */
header h3 {
  font-size: 200%;
  color: #548291;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
}

/*  A welcome message or an explanation of the login form */
header p {
  font-weight: 500;
  font-size: 13px;
}



/* //////////////////////////////////////////// */
/* //////////////////////////////////////////// */

/* inputs form  */
.form-input{
  width: 350px;
  height: 40px;
  margin-top: 2%;
  padding: 15px;
  font-size: 16px;
  color: #000000;
  outline: none;
  border: none;
  border-radius: 5px 5px 5px 5px;
  transition: 0.2s linear;
  border: solid 1px #EDF0F5;
}

/* focus  */
input:focus {
  border-radius: 5px;
}

/* //////////////////////////////////////////// */
/* //////////////////////////////////////////// */

/* input[type="text"] {min-width: 250px;} */
/* buttons  */
.log-in{
  display: inline-block;
  color: #FFFFFF;
  width: 350px;
  height: 40px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  padding: 0 20px;
  background: #3268AD;
  border-radius: 5px;
  outline: none;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s linear;
  margin: 7% auto;
}
.field-validation-error {
    font-weight: bold;
    color: red;
}
.error {
    font-weight: bold;
    color: red;
}  
/* buttons hover */
button:hover {
  box-shadow: none;
}

footer{
  position: fixed;
  left: 0px;
  bottom: 0px;
  height: 50px;
  width: 100%;
  padding: 15px;
  text-align: center;
  border: 1px solid #edf0f5;
  -webkit-box-shadow: 0px -4px 3px #edf0f5;
  -moz-box-shadow: 0px -4px 3px #edf0f5;
  box-shadow: 0px -4px 3px #edf0f5;
}

.fontSizeButton{
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

/* buttons hover Animation */
@keyframes ani9 {
    0% {
    transform: translateY(3px);
  }

  100% {
    transform: translateY(5px);
  }
}
