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

body.gradient-bg {
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #fff7f5, #fef1ef, #f7f5f2);
  color: #010d26;
  min-height: 100vh;
  line-height: 1.6;
}

/* Header */
.header {
  background: #101d3c;
  padding: 16px 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.branding {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  background: linear-gradient(to right, #f2522e, #d13220);
}

.logo-text {
  line-height: 1.1;
}

.logo-she {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  display: block;
}

.logo-can {
  font-family: "Pacifico", cursive;
  font-size: 1.4rem;
  font-weight: 500;
  color: white;
  margin-left: 4px;
}

.logo-foundation {
  font-family: "Open Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: #fecba2;
  letter-spacing: 0.5px;
}

.contact-link {
  font-size: 0.9rem;
  color: #fbe9e7;
}

.contact-link a {
  color: inherit;
  text-decoration: none;
}

.contact-link a:hover {
  color: #fecba2;
}

/* Main Container */
.main {
  padding: 30px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: calc(100vh - 80px);
}

.heading {
  text-align: center;
  margin-bottom: 30px;
  max-width: 600px;
}

.heading h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #010d26;
}

.description {
  color: #666;
  font-size: 1.1rem;
}

/* Card */
.card {
  background: rgba(255, 255, 255, 0.95);
  width: 100%;
  max-width: 420px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

.card h3 {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  color: #101d3c;
  margin-bottom: 24px;
}

/* Tab Buttons */
.tabs {
  display: flex;

  border-radius: 8px;
  padding: 4px;
  margin-bottom: 24px;
}

.tab-btn {
  flex: 1;
  padding: 12px 0;
  border: none;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  color: #666;
  font-weight: 600;
  transition: 0.3s ease;
  background: #ffe7d2;
}

.tab-btn.active {
  background: linear-gradient(to right, #f2522e, #d13220);
  color: white;
  box-shadow: 0 2px 6px rgba(242, 82, 46, 0.25);
}

/* Form  */
form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #010d26;
  font-family: "Poppins", sans-serif;
}

input {
  padding: 12px 14px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

input:focus {
  border-color: #f2522e;
  outline: none;
  box-shadow: 0 0 0 3px rgba(242, 82, 46, 0.2);
}

.password-wrapper {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  font-size: 1rem;
}

.forgot-password {
  font-size: 0.9rem;
  color: #f2522e;
  text-decoration: none;
  text-align: end;
}

.forgot-password:hover {
  color: #d13220;
  text-decoration: underline;
}


/* Buttons */
.btn {
  background: linear-gradient(to right, #f2522e, #d13220);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn:hover {
  background: linear-gradient(to right, #d13220, #f2522e);
  box-shadow: 0 4px 10px rgba(242, 82, 46, 0.3);
  transform: translateY(-2px);
}

.hidden {
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 15px;
  }

  .logo-text {
    text-align: center;
  }

  .card {
    padding: 25px 20px;
  }

  .heading h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 12px 15px;
  }

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

  .card {
    padding: 20px 15px;
  }

  .tabs {
    margin-bottom: 20px;
  }
}
