* {
  /*font-family: 'Roboto', sans-serif;*/
  font-family: 'Reem Kufi', sans-serif;
}
body {
  background-color: white;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.login_h1 {
  margin-top: 60px;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: heavy;
	font-style: inherit;
	font-family: inherit;
	vertical-align: baseline;
  color:black;
  font-size:25px;
  padding-bottom:15%;
  text-align: center;
}

.center {
  margin: auto;
  width: 80%;
}

@media only screen and (min-width: 992px) {
  .center {
    margin: auto;
    width: 30%;
  }
}

input[type="text"], input[type="password"]{
  width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  padding: 6px 10px;
  background-color: #f2f2f2;
  font-size: 20px;

}

input[type="password"] {
  margin-bottom: 2px;
}

.forgot-password-container {
  text-align: right;
  margin-bottom: 20px;
}
.forgot-password {
  display:inline;
  color: black;
  text-align: right;
  font-style: italic;
  font-size: 16;
  padding-top:2px
}

.submit {
  width: 100%;
  border-radius: 5px;
  border: none;
  padding: 6px 10px;
  font-size: 25;
  cursor: pointer;
  background-color: green;
  color: white;
  font-family: inherit;
}

.submit:hover {
  background-color: darkgreen;
}

.notification {
  padding: 10px;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  visibility: hidden;
}

.notification.error {
  background-color: #dc3545;
  border: 1px solid #b02a37;
}

.notification.success {
  background-color: #28a745;
  border: 1px solid #1e7e34;
}
