body {
  margin: 0;
  font-family: Poppins;
  background: #f5f6fa;
}
/* Navbar css in index page*/
nav {
  display: flex;
  justify-content: space-between;
  background: #6c5ce7;
  color: white;
  align-items: center;
  padding-inline: 20px;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}

.btn {
  background: white;
  color: #6c5ce7;
  padding: 8px 15px;
  border-radius: 6px;
}
/* Hero css in index page */
.hero {
  text-align: center;
  padding: 80px;
}
/* features css in index page */
.features {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px;
}
.features_about{
  margin-bottom: 10px;
}

/* cards css in index page */
.features .card {
  padding: 30px;
  background: white;
  border-radius: 10px;
  width: 150px;
  text-align: center; 
}
.features_about .card{
  padding: 15px;
  margin-bottom: 50px;
  background: white;
  border-radius: 10px;
  width: 150px;
  text-align: center;
}
.card p{
  color: rgb(155, 155, 248);
  font-weight: 200;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
/* box css in login page */
.box {
  background: white;
  padding: 30px;
  width: 300px;
  border-radius: 10px;
}

.box input, button {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border-radius:20px;
  outline: none;
  border: 1px solid black;

}
.box button{
  border-radius:20px;
  font-size: 1rem;
  border: none;
  transition: all 0.2s ease; 

}
.box button:hover{
  background-color: rgb(161, 210, 194);
}
/* dashboard css in login page */

.dashboard {
  display: flex;
  height: 100vh;
}
/* aside css in login page */

aside {
  width: 200px;
  background: #2d3436;
  padding: 20px;
  color: white;
}

aside button, input {
  width: 100%;
  margin-bottom: 10px;
}
/* main css in login page */

main {
  flex: 1;
  background: white;
  position: relative;
}
/* footer */
.app-footer {
  width: 100%;
  height: 40px;
  background: #111;
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999;
  letter-spacing: 0.5px;
}

