body {
  background-image: linear-gradient(
    to top,
    #fdcbf1 0%,
    #fdcbf1 1%,
    #e6dee9 100%
  );
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: capitalize;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-contenar {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px,
    rgba(6, 24, 44, 0.65) 0px 4px 6px -1px,
    rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
  width: 100%;
  max-width: 400px;
  margin: 1rem;
}
h2 {
  text-align: center;
  margin-bottom: 1.3rem;
  color: #333;
}
.input-group {
  margin-bottom: 1rem;
}
label {
  display: block;
  margin-bottom: 0.5rem;
  color: #555;
}
input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}
input:focus {
  border-color: #6b48ff;
}
button {
  width: 100%;
  padding: 0.8rem;
  background-color: #6b48ff;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
button:hover {
  background-color: #5732d3;
}

.forget-password {
  text-align: center;
  margin-top: 1rem;
}
.forget-password a {
  color: #6b48ff;
  text-decoration: none;
  font-size: 0.9rem;
}
.forget-password a:hover {
  text-decoration: underline;
}
