:root{
  /**
   * typography
   */

   --ff-philosopher: "Philosopher", sans-serif;
   --ff-poppins: "Poppins", sans-serif;
 
   --fs-1: 4rem;
   --fs-2: 3.2rem;
   --fs-3: 2.7rem;
   --fs-4: 2.4rem;
   --fs-5: 2.2rem;
   --fs-6: 2rem;
   --fs-7: 1.8rem;
 
   --fw-500: 500;
   --fw-700: 700;
   /**
   * colors
   */

  --chinese-violet_30: hsla(304, 14%, 46%, 0.3);
  --chinese-violet: hsl(304, 14%, 46%);
  --sonic-silver: hsl(208, 7%, 46%);
  --old-rose_30: hsla(357, 37%, 62%, 0.3);
  --ghost-white: hsl(233, 33%, 95%);
  --light-pink: hsl(357, 93%, 84%);
  --light-gray: hsl(0, 0%, 80%);
  --old-rose: hsl(357, 37%, 62%);
  --seashell: hsl(20, 43%, 93%);
  --charcoal: hsl(203, 30%, 26%);
  --white: hsl(0, 0%, 100%);
}

/* nav bar div */
/* from style.css */
 
body {
    background-color: #f5ebe6;
    padding: 1px;
    font-style:normal;
    background-position: center,bottom;
  }

  /* intro to page */

  .bookworms{
    margin-top:200px;
    margin-bottom: 50px;
    display: flex;
    margin-left: 50px;
    margin-bottom: 40px;
    align-items: center;
  }
@media (max-width: 992px) {
  .bookworms {
      display: flex;
      flex-direction: column;
      /* margin-top: 120px; */
      margin-left: 50px;
      margin-bottom: 40px;
      align-items: center;
  }
}


  .bookworm{
    font-family: var(--ff-philosopher);
    color: rgb(247, 150, 150);
  text-align: center;
  margin-left: 40px;
  
 
  }

  .bookworm2{
    font-family: var(--ff-poppins);
    color: var(--sonic-silver);
  text-align: center;
  font-size: 25px;
  margin-bottom: -10px;
  margin-top: 0;
  margin-left: 40px;
  }
  
  .bookworm3{
    font-family: var(--ff-poppins);
    color: var(--sonic-silver);
  text-align: center;
  font-size: 20px;
  }


/* FORGOT PASSWORD DIV */

#FORGOTPASSWORD {
  font-size: small;
  font-family: var(--ff-poppins);
}

.FORGOTPASSWORD {
  overflow: hidden;
  position: relative; 
  display: flex; 
  flex-direction: column;
  font-family: var(--ff-poppins);
  background-color: hsl(357, 37%, 62%);
  width: 480px;
  height: auto;
  margin-left: 40px;
  border-radius: 2%;
  padding: 10px;
  box-shadow: 0 0 15px 5px #24004628;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 2px;
}

.FORGOTPASSWORD label {
  margin: 5% 0;
  text-align: center;
}

label {
  font-family: Raleway;
  color: #fff;
  font-size: 40px;
  justify-content: center;
  display: flex;
  font-weight: bold;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}

.input[type="email"] {
  align-self: center;
  background: #e0dede;
  padding: 0 10px;
  border: none;
  outline: none;
  border-radius: 4px;
  font-size: 1rem;
  height: 30px;
  width: 90%; /* Make the input full width */
  margin-top: 0;
}

/* Enter email */
.ver-code {
  margin-top: 1.5rem;
  font-size: 20px;
  color: #fff;
  font-family: var(--ff-poppins);
  margin-bottom: 5px;
  text-align: center;
}

.back {
  text-align: center;
  color: #e0dede;
  font-family: var(--ff-poppins);
  margin-top: 1rem;
  text-decoration: none;
}

/* submit button */
.submit {
  font-family: Raleway;
  width: 50%;
  height: 50px;
  margin: 12px auto;
  color: #fff;
  background: transparent;
  font-size: larger;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 1px 1px 10px 3px #24004628;
  text-align:center;
}
.dark-mode .container button {
  margin: 12px auto;
}
button:hover {
  background-color: rgb(255, 255, 255);
  color: black;
}


  /* Responsive styles */
@media (max-width: 600px) {
  .FORGOTPASSWORD {
    width: 70%; /* Adjust as needed */
    margin: 10% auto; /* Adjust as needed */
  }
  

  .submit {
    width: 90%; /* Make the button full width */
     margin: 12px auto;
    
  }
}
 
  
