  * {
            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);
}
/* Add Recipient  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 {
      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 {
      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: 45px;
      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{
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      align-items: center;
            padding-top: 1rem;

  }

  .settings .profile-info .form form .update-profile button{
      cursor: pointer;
      border: none;
      border-radius: 10px;
      border: 2px solid var(--body-foreground);
      background-color: var(--body-foreground);
      height: 45px;
      width: 160px;
  }
 .settings .profile-info .form form .update-profile button.cancel{
            background-color: var(--body-background) ;
   width: 100px;
 }
  .settings .profile-info .form form .update-profile button.cancel a{
      color: var(--body-foreground);
  }
    .settings .profile-info .form form .update-profile button.cancel:hover{
            background-color:rgba(0, 0, 0, 0.034);
    transition-duration: 0.5s;
    }
  .settings .profile-info .form form .update-profile 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;
  }













/* Add Recipient  section ends here */


@media (max-width:484px) {
      .settings .profile-info .form form .update-profile{
gap: 20px;
justify-content: center;
  }
 .settings .profile-info .form form .update-profile button.cancel{
   width: 150px;
 }
}