  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  :root {
      --text-dark: #000;
      --text-light: #7aa7a6;
      --body-background: #ffff;
      --body-foreground: #008080;
      --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      --dark-border: rgba(0, 0, 0, 0.2);
      --soft-red: #c22a13;
      --hover: #266b6a;
      --logo-font: "Cormorant Garamond", serif;
      --body-font: "Work Sans", sans-serif;
      --heading-font: 'Playfair Display', serif;

  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
      font-family: var(--heading-font);
      letter-spacing: 1px;

  }

  p,
  span,
  button,
  a,
  textarea {
      font-family: var(--body-font);
  }

  /* settings section starts here */

  .settings {
      width: 100%;
      min-height: 100vh;
      height: auto;
      padding-top: 7rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
      margin-bottom: 5rem;
  }

  .settings .heading h1 {
      font-size: 2.5rem;
      font-weight: 400;
      text-align: center;
      padding: 2rem 0rem;
  }

  .settings .profile-info,
  .settings .delete-account {
      width: 80%;
      box-shadow: var(--shadow);
      border-radius: 10px;
      padding: 1rem;
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: center;
  }

  .settings .profile-info .heading h2,
  .settings .delete-account .heading h3 {
      padding-top: 2rem;
      font-size: 1.7rem;
      text-align: center;
      font-weight: 400;
  }

  .settings .profile-info .form {
      width: 100%;

      padding: 1rem;
  }

  .settings .profile-info .form form {
      display: flex;
      flex-direction: column;
      gap: 30px;
  }

  .settings .profile-info .form form .label {
      display: flex;
      flex-direction: column;
      gap: 10px;
      width: 100%;
  }

  .settings .profile-info .form form .label label {
      font-size: 1.1rem;
  }

  .settings .profile-info .form form .label input {
      height: 50px;
      border-radius: 10px;
      border: 1px solid var(--dark-border);
      padding: 0.5rem 1rem;
      font-size: 1rem;
  }

  .settings .profile-info .form form .label input:hover {
      border-color: var(--body-foreground);
  }

  .settings .profile-info .form form .label input:focus {
      outline: none;
      border-width: 2px;
  }

  .settings .profile-info .form form .update-profile,
  .settings .delete-account .delete-button {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
  }

  .settings .profile-info .form form .update-profile button,
  .settings .delete-account .delete-button button {
      cursor: pointer;
      border: none;
      border-radius: 10px;
      border: 2px solid var(--body-foreground);
      background-color: var(--body-foreground);
      height: 45px;
      width: 150px;
  }

  .settings .profile-info .form form .update-profile button a,
  .settings .delete-account .delete-button button a {
      color: var(--body-background);
      font-size: 0.9rem;
      text-decoration: none;
  }

  .settings .profile-info .form form .update-profile button:hover {
      background-color: var(--hover);
      transition-duration: 0.5s;
  }

  .settings .delete-account {
      border-left: 5px solid var(--soft-red);
  }

  .settings .delete-account .heading h3 {
      color: var(--soft-red);
      font-weight: bolder;
  }

  .settings .delete-account .warning {
      padding-top: 1rem;
      width: 100%;
      display: flex;
      justify-content: center;

  }

  .settings .delete-account .delete-button {

      justify-content: center;
  }

  .settings .delete-account .delete-button button {
      background-color: var(--soft-red);
      border: none;
  }

  /* settings section ends here */