body {
  direction:rtl;
  background-color: #e1e8ee;
  background-image: url("img/panel.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.notif{
    background: #ffcc00;
    padding: 15px;
    margin: 30px;
    border-radius: 10px;
}
.login-page {
  width: 50%;
  padding: 3% 0 0;
  margin: auto;
  background-color: transparent;
}

.avatar {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.form {
    position: relative;
    z-index: 1;
    max-width: 400px;
    margin: 0 auto 100px;
    padding: 45px;
    text-align: center;
    background-color: #fff;
    border-radius: 50px;
}

.form input[type="text"],
.form input[type="password"] {
  font-family: 'parsico', sans-serif;
  outline: none;
  width: 100%;
  border: 2px solid #fff7e4;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
  border-radius: 10px;
  background-color: rgb(255 243 216 / 70%);
  text-align: center;
}

.form input[type="submit"] {
  text-transform: uppercase;
  outline: none;
  background-color: #ffcc00;
  width: 100%;
  border: 2px solid #ffcc00;
  padding: 15px;
  color: #111;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 10px;
}

.form button:hover,
.form button:active,
.form button:focus {
  color:#fff;
  background-color: #111;
}

.form input:hover,
.form input:active,
.form input:focus {
  border:2px solid #fc0;
}
.form input:hover[type="submit"] {
  background-color: #111;
  border: 2px solid #111;
  color:#fff;
}
.form h2 {
  color: #333333;
  font-size: 28px;
  margin: 0 0 30px;
}

.form p.message {
  color: #666666;
  font-size: 14px;
  margin-top: 15px;
}

.form p.message a {
  color: #c74b00;
  text-decoration: none;
}

.form p.message a:hover {
  text-decoration: underline;
}
 @media only screen and (max-width: 768px) {
body {
  background-color: #fff;
}
.login-page {
  width: 100%;
}
 }