@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  font-family: 'Inter', serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background-color: #4169e1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
a {
  text-decoration: none;
  cursor: pointer;
  color: #4169e1;
}
.container-form {
  background-color: #ffffff;
  width: 400px;
  height: 500px;
  border-radius: 10px;
  position: relative;
  padding-top: 60px;
  font-size: 13px;
}
.container-form .notification {
  position: absolute;
  top: 5px;
  left: 60px;
  width: 70%;
  height: 30px;
  border-radius: 5px;
  text-align: center;
  font-size: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-form .btnCls {
  position: absolute;
  padding: 5px 10px;
  border-radius: 8px;
  background-color: #000000;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  right: 5px;
  top: 5px;
}
.container-form > p {
  text-align: center;
  margin-bottom: 50px;
}
.container-form > div {
  margin: 0 auto;
  width: 90%;
  height: 70px;
  position: relative;
  margin-top: 10px;
}
.container-form > div > img {
  position: absolute;
  width: 15px;
  height: 15px;
  left: 8px;
  top: 35px;
}
.container-form > div > input[type='text'],
[type='password'] {
  width: 100%;
  padding: 10px;
  border: 1px solid #9a9a9a;
  border-radius: 5px;
  margin-top: 8px;
  transition: 0.5s;
  padding-left: 30px;
  outline: none;
}
.container-form > div > input[type='text']:hover,
[type='password']:hover {
  border: 1px solid #4169e1;
}
.btnLogin {
  width: 100%;
  height: 50px;
  background-color: #4169e1;
  color: #ffffff;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  outline: none;
  border: 0px;
  margin: 0 auto;
  font-size: 14px;
  cursor: pointer;
}
.container-form > div > p {
  text-align: center;
  margin-top: 15px;
}
