/* === Base Colors & Fonts === */
:root {
  --card-bg: rgba(255, 255, 255, 0.05);
  --border-color: rgba(255, 255, 255, 0.1);
  --divider-color: rgba(255, 255, 255, 0.2);
  --highlight-color: #3b82f6;
  --accent-color: #facc15;
  --text-dark: #040810;
}

body {
    background-color: beige;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
}


h2 {
    color: darkgreen;
}
h3 {
  color: blueviolet;
}

/* ===== Welcome User ===== */
.welcome-user {
  /* background: #1e3a8a; */
  color: magenta;
  text-align: center;
  padding: 1px 8px;
  font-size: 10px;
  font-weight: 600;
}

.welcome-user a {
  
  margin-left: 8px;
  text-decoration: none;
  font-weight: 600;
}

.welcome-user a:hover {
  text-decoration: underline;
}

/* ===== Navbar ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #142b66;
  color: #fff;
  padding: 20px 40px;
  border-radius: 10px;
  position: relative;
}

/* Brand container: horizontal layout */
.navbar .brand {
  display: flex;           /* horizontal layout */
  align-items: center;     /* vertical center */
  gap: 8px;                /* space between logo and text */
}

/* Logo image */
.navbar .brand .nav-logo {
  display: block;          /* remove flex, use block for img */
  max-width: 60px;         /* adjust as needed */
  max-height: 60px;        /* adjust as needed */
  margin: 0;
}

/* Brand text */
.navbar .brand h1 {
  font-size: 35px;
  font-weight: bold;
  margin: 0;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ffd700;
}

/* Floating WhatsApp button - improved */
.whatsapp-float {
    position: fixed;
    bottom: 20px;        /* distance from bottom */
    right: 20px;         /* distance from right */
    z-index: 1000;
    width: 60px;         /* button size */
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    cursor: pointer;
    background-color: #25D366; /* WhatsApp green */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.whatsapp-float img {
    max-width: 80%;       /* scale image inside the circle */
    max-height: 80%;
    object-fit: contain;  /* maintain aspect ratio */
    display: block;
}

/* Hover effect */
.whatsapp-float:hover {
    transform: scale(1.15);
}

/* ===== Hamburger ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;   /* or fixed, depending on your layout */
  top: 20px;            /* adjust as needed */
  right: 20px;          /* adjust as needed */
  z-index: 1000;        /* ensures it's on top of banner or other elements */
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

/* ===== Sub Navbar ===== */
.sub-navbar {
  margin: 10px 20px;
  background: #1e3a8a;
  color: white;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  flex-wrap: wrap;
}

.sub-navbar .page-title {
  font-size: 18px;
  font-weight: bold;
}

.sub-navbar .social-links {
  display: flex;
  align-items: center;
  gap: 15px;
  color: whitesmoke;
  text-decoration: none;
}

.sub-navbar .social-links a {
  color: whitesmoke;             /* remove default blue color */
  text-decoration: none;         /* remove underline */
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
}

.sub-navbar .social-links img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

/* ===== Responsive Styles ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #142b66;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    border-radius: 0 0 10px 10px;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .sub-navbar {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .welcome-user {
    text-align: center;
    font-size: 14px;
  }
  .sub-navbar .page-title {
    display: none;
  }
}

@media (max-width: 480px) {
  .navbar .brand h1 {
    font-size: 18px;
  }

  .sub-navbar .page-title {
    display: none;
  }

  .social-links img {
    width: 22px;
    height: 22px;
  }
}






/* Wrapper */

.page-wrapper {
  display: flex;
  justify-content: center;  /* Horizontal center */
  align-items: center;      /* Vertical center */
  min-height: 100vh;
  background: beige;      /* optional background */
}

.instruction-text{
  color: red;
  margin: 0;
}
.form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  max-width: max-content;
  margin: 0 auto;
  background: lightgrey;
  padding: 30px 40px;
  border-radius: 8px;
}

/* Section Titles */
.section-title {
  color: #4434b0;
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

/* Each Section */
.form-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  grid-template-rows: auto; 
  gap: 30px 45px;
  margin-bottom: 30px;
  
  
}


/* Form Group */
.form-group {
  display: flex;
  flex-direction: column;
  
  
}

.form-grid {

  border: thick;
}

.form-group label {
  font-weight: 800;
  color: #333;
  margin-bottom: 6px;
  margin-top: 6px;
}
legend {
  
  text-decoration: solid;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;;  
  background: white;
}

/* Button */
.form-footer {
  text-align: center;
  margin-top: 20px;
}

.btn.primary {
  background: #3a34b0;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.btn.primary:hover {
  background: #922b6d;
}

/* Responsive (mobile) */
@media (max-width: 900px) {
  .form-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .form-section {
    grid-template-columns: 1fr;
  }
}




/* user display part  */
.user-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 20px auto;
  width: 95%;
  max-width: 900px;
}

.user-card {
  display: flex;
  background: lightgray;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.user-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.user-left {
  flex: 0 0 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-pic {
  width: 110px;
  height: 110px;
  border-radius: 8px;
  border: 2px solid #ccc;
  object-fit: cover;
  background-color: #f3f3f3;
}

.user-right {
  flex: 1;
  padding-left: 20px;
}
.status-section {
  display: flex;
  align-items: center;
}


.proposal-id {
  font-weight: bold;
  color: #b30059;
  margin-bottom: 10px;
  font-size: 14px;
}

.bio {
  font-size: 15px;
  color: #a3005b;
  font-weight: 600;
  margin-bottom: 12px;
}

.user-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 15px;
  font-size: 14px;
  color: #444;
}

.user-info p {
  margin: 3px 0;
}

.status-section {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status {
  font-weight: bold;
}

.status.in-process {
  color: #00a36c;
}

.view-btn {
  background: #67b12f;
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.view-btn:hover {
  background: #5aa128;
}

.helptext {
  display: none;
}
.view-btn.disabled {
  background: #ccc;
  color: #666;
  cursor: not-allowed;
  border: 1px solid #aaa;
  opacity: 0.7;
}



/* for filter/Search user */
/* === FILTER BOX === */
/* ==== FILTER BOX STYLING ==== */
.filter-box {
  background: #62878b;
  border-radius: 10px;
  padding: 15px 25px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.filter-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);  /* 4 columns */
  gap: 15px;
  align-items: end;
}

.filter-group {
  display: flex;
  flex-direction: column;
}

.filter-group label {
  font-weight: 600;
  margin-bottom: 5px;
}

.filter-group select {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
}

/* Buttons below all filters */
.filter-buttons {
  grid-column: 1 / -1; /* Span full width under all fields */
  display: flex;
  justify-content: center;
  gap: 10px;
}

.filter-buttons .btn {
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: #007bff;
  color: white;
}

.btn-secondary {
  background-color: #6c757d;
  color: white;
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 900px) {
  .filter-form {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
  }
}

@media (max-width: 580px) {
  .filter-form {
    grid-template-columns: 1fr; /* 1 column stack */
  }

  .filter-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-buttons .btn {
    width: 100%;
  }
  .user-info {
  
  grid-template-columns: 1fr;
  
}
}
/* Filter/Search end */


/* === PAGE LAYOUT WITH SIDEBAR === */
.page-container {
  display: grid;
  grid-template-columns: 3fr 1fr; /* main content + sidebar */
  gap: 30px;
  max-width: 1300px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Main content */
.main-content {
  /* background: ; */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Sidebar */
.sidebar {
  
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  overflow: hidden;
}

.sidebar img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 15px;
  object-fit: cover;
}

.sidebar p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-container {
    grid-template-columns: 2fr 1fr;
  }
  .sidebar {
    margin-top: 30px;
  }
}

/* === Responsive Layout Adjustments === */
@media (max-width: 768px) {
  .sub-navbar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .sub-navbar .social-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* HIDE SIDEBAR ON SMALL SCREENS */
  .sidebar {
    display: none;
  }

  /* Expand main content to full width when sidebar hidden */
  .main-content {
    width: 100%;
    grid-column: 1 / -1;
  }
}






/* user varification status */

.verified {
  color: green;
  font-weight: bold;
}

.not-verified {
  color: orange;
  font-weight: bold;
}


/* ===== Centered Login Wrapper ===== */
.login-page {
  max-width: 700px;
  margin: 50px auto;
  padding: 30px 40px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* ===== Instructions Box ===== */
.instructions-box {
  background: #e8f5e9;
  border-left: 5px solid #4caf50;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 25px;
}

.instructions-box h3 {
  color: #2e7d32;
  margin-bottom: 12px;
  text-align: center;
}

.instructions-box ol {
  margin-left: 20px;
  color: #2f2f2f;
  font-size: 15px;
  line-height: 1.6;
}

.instructions-box li {
  margin-bottom: 10px;
}

/* ===== Disclaimer Box ===== */
.disclaimer-box {
  background: #fff3cd;
  border-left: 5px solid #ffca28;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 30px;
}

.disclaimer-box h3 {
  color: #b36b00;
  text-align: center;
  margin-bottom: 12px;
}

.disclaimer-box p {
  line-height: 1.6;
  font-size: 15px;
  color: #5c5c5c;
}

/* ===== Login Form ===== */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form label {
  font-weight: 600;
  color: #333;
}

form input[type="text"],
form input[type="password"] {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  background: #fafafa;
  transition: all 0.2s ease;
}

form input:focus {
  border-color: #3a7f6d;
  box-shadow: 0 0 6px rgba(58, 127, 109, 0.2);
  outline: none;
}

form button {
  background: #3a7f6d;
  color: white;
  padding: 12px 0;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #2e6759;
}

/* ===== Additional Links ===== */
form p {
  text-align: right;
  font-size: 14px;
  margin-top: 10px;
}

form a {
  color: #0069c0;
  text-decoration: none;
}

form a:hover {
  text-decoration: underline;
}

/* ===== Responsive Design ===== */
@media (max-width: 600px) {
  .login-page {
    padding: 20px;
    margin: 20px;
  }
  .instructions-box,
  .disclaimer-box {
    padding: 15px;
  }
  form button {
    font-size: 15px;
  }
}


/* === About Section Styling === */



.about-section {
  background: beige;
  padding: 60px 20px;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.about-title {
  font-size: 2rem;
  color: #004aad;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-intro {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto 40px;
}

.why-title {
  font-size: 1.6rem;
  color: #222;
  margin-bottom: 25px;
  font-weight: 600;
}

.why-title span {
  color: #004aad;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.why-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.why-card h4 {
  color: #004aad;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.why-card p {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-title {
    font-size: 1.6rem;
  }

  .about-intro {
    font-size: 0.95rem;
  }

  .why-card {
    text-align: center;
  }
}

/* === End About Section Styling === */




/* === FOOTER SECTION === */
.site-footer {
  background: linear-gradient(180deg, #002b5b, #004aad);
  color: #f9f9f9;
  padding: 50px 20px 20px;
  margin-top: 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-about h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 15px;
}

.footer-about p {
  color: #dcdcdc;
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-links h4,
.footer-social h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #dcdcdc;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-social .social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-social .social-icons img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.footer-social .social-icons img:hover {
  transform: scale(1.5);
}

.footer-social .contact-text {
  font-size: 0.9rem;
  color: #ddd;
  margin: 3px 0;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #ccc;
}

.footer-bottom .disclaimer {
  margin-top: 5px;
  font-size: 0.85rem;
  color: #aaa;
}

/* === RESPONSIVE FOOTER === */
@media (max-width: 600px) {
  .footer-container {
    text-align: center;
  }

  .footer-social .social-icons {
    justify-content: center;
  }
}



/* === PAGINATION === */
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 20px 0;
}

.pagination a,
.pagination span {
  padding: 8px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  transition: all 0.2s ease;
}

.pagination a:hover {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}

.pagination .active {
  background-color: #007bff;
  color: white;
  font-weight: bold;
  border-color: #007bff;
}

.pagination .disabled {
  color: #aaa;
  border-color: #ddd;
  cursor: not-allowed;
}


/* === Unified Card Style === */
.profile-container,
.profile-detail-card {
  max-width: 900px;
  margin: 40px auto;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  padding: 40px 30px;
  text-align: center;
}

/* === Profile Picture === */
.profile-container img,
.profile-detail-card .profile-pic {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--highlight-color);
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* === Name / Title === */
.profile-container h2,
.profile-detail-card h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 25px;
}

/* === Info Grid === */
.profile-container .profile-info,
.profile-detail-card .profile-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 40px;
  text-align: left;
}

.profile-container .profile-info p,
.profile-detail-card .profile-info p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-dark);
  padding: 6px 0;
  border-bottom: 1px dashed var(--border-color);
}

.profile-container .profile-info strong,
.profile-detail-card .profile-info strong {
  color: var(--highlight-color);
}

/* === Divider === */
.profile-divider {
  border: rgb(16, 14, 12);
  border-top: 2px solid var(--divider-color);
  margin: 30px 0;
}

/* === Contact Section === */
.contact-info {
  text-align: center;
  margin-top: 25px;
}

.contact-info h3 {
  font-size: 1.3rem;
  color: var(--highlight-color);
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 1rem;
  color: var(--text-dark);
  margin: 4px 0;
}

/* === Button === */
.btn.primary {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  padding: 10px 20px;
  background-color: #3498db;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn.primary:hover {
  background-color: #2980b9;
}

/* === Responsive === */
@media (max-width: 700px) {
  .profile-container .profile-info,
  .profile-detail-card .profile-info {
    grid-template-columns: 1fr;
  }

  .profile-container,
  .profile-detail-card {
    padding: 25px 20px;
  }

  .profile-container img,
  .profile-detail-card .profile-pic {
    width: 120px;
    height: 120px;
  }
}

/* === Edit Profile Wrapper === */
.edit-form-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 80vh;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.02);
}

/* === Form Container === */
.edit-form-container {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  padding: 40px 30px;
  max-width: 700px;
  width: 100%;
  color: #040810;
  text-align: center;
}

/* === Form Fields === */
.styled-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

.styled-form label {
  font-weight: 600;
  color: #3b82f6;
  display: block;
  margin-bottom: 6px;
  text-align: left;
}

.styled-form input[type="text"],
.styled-form input[type="email"],
.styled-form input[type="number"],
.styled-form input[type="file"],
.styled-form input[type="password"],
.styled-form select,
.styled-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgb(247, 242, 242);
  color: #040810;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.styled-form input:focus,
.styled-form select:focus,
.styled-form textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
  outline: none;
}

.styled-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* === Button === */
.btn.primary {
  display: inline-block;
  background-color: #3498db;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  padding: 12px 25px;
  margin-top: 20px;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.btn.primary:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
}

/* === File Input Styling (optional improvement) === */
input[type="file"] {
  background: rgba(240, 229, 229, 0.922);
  padding: 8px;
  cursor: pointer;
}

/* === Optional Divider or Title === */
.edit-form-container h2 {
  color: #facc15;
  margin-bottom: 25px;
  font-size: 1.6rem;
  font-weight: 600;
}

/* === Responsive === */
@media (max-width: 600px) {
  .edit-form-container {
    padding: 25px 20px;
  }

  .btn.primary {
    width: 100%;
  }
}



/* ===== Password Reset ====  */

.password-form-container {
  max-width: 400px;
  margin: 80px auto;
  padding: 30px 25px;
  background: beige;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.password-form-container h2 {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 10px;
}

.password-form-container label {
  align-items: flex-start;
  align-content: flex-start;
}

.password-form-container p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.password-form-container form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.password-form-container input[type="email"],
.password-form-container input[type="text"] {
  width: 100%;
  max-width: 320px;
  padding: 10px 12px;
  font-size: 0.95rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.password-form-container input:focus {
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
}

.password-form-container .btn.primary {
  background-color: #4a90e2;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.1s ease;
}

.password-form-container .btn.primary:hover {
  background-color: #357abd;
  transform: translateY(-1px);
}

.password-form-container .btn.primary:active {
  transform: translateY(1px);
}
