* {
  font-family: "Poppins";
}

body {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow-y: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #dde5f4;
  height: 100vh;
  
  
}

.login {
  background: #f1f7fe;
  padding: 2em;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  box-shadow: 0 0 2em #e6e9f9;
  gap: 1em;
}
.logo {
  margin-top: -3em;
}

.btnlogin {
  padding: 0.3em;
  background: #3d13d4;
  color: white;
  border: none;
  border-radius: 10px;
  display: block;
  text-align: center;
  margin: auto;
  width: 90%;
  font-weight: 600;
}
.footer {
  /* display: flex;
  font-size: 1em;
  color: #5e5e5e;
  gap: 14em;
  padding-bottom: 10em; */
  /* background: #fff; */
  font-size: 1em;
  color: #5e5e5e;
  padding: 10px 20px;
  display: block;
}

.separator {
  border-top: 1px solid #D8D8D8;
  margin-top: 10px;
  padding-top: 10px;
}