* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background-color: #f5f5f5;
}

/* LOGIN PAGE STYLE START */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: 25px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  max-width: 1200px;
  width: 80%;
  min-height: 550px;
  margin: 100px auto;
  padding: 20px;
  transition: all 0.3s ease;
}

.login-form-section {
  flex: 1;
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-illustration-section {
  flex: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.login-illustration-image {
  max-width: 90%;
  height: auto;
  transition: transform 0.3s ease;
}

.login-illustration-image:hover {
  transform: scale(1.03);
}

.login-title {
  color: #2d3748;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.login-subtitle {
  color: #718096;
  font-size: 14px;
  margin-bottom: 40px;
  line-height: 1.5;
}

.login-form-group {
  margin-bottom: 30px;
}

.login-label {
  display: block;
  color: #2d3748;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.login-email-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
}

.login-email-input:focus {
  border-color: #ff8a65;
  box-shadow: 0 0 0 4px rgba(255, 138, 101, 0.15);
}

.login-otp-container {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
  justify-content: center;
}

.login-otp-box {
  width: 100%;
  height: 70px;
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  transition: all 0.3s ease;
  outline: none;
  margin-bottom: 40px;
}

.login-otp-box:focus {
  border-color: #ff8a65;
  box-shadow: 0 0 0 4px rgba(255, 138, 101, 0.15);
}

.login-submit-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #ff8a65 0%, #ff7043 100%);
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.login-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 138, 101, 0.4);
}

.login-divider-container {
  display: flex;
  align-items: center;
  margin: 30px 0;
  gap: 15px;
}

.login-divider-line {
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.login-divider-text {
  color: #a0aec0;
  font-size: 13px;
}

.login-social-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.login-social-btn {
  width: 60px;
  height: 60px;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.login-social-btn:hover {
  border-color: #cbd5e0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.login-social-icon {
  width: 24px;
  height: 24px;
}

.login-hide {
  display: none;
}

@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
    min-height: auto;
    padding: 40px 30px;
  }

  .login-illustration-section {
    display: none;
  }

  .login-form-section {
    padding: 20px 10px;
  }
}

.register-link-text {
  text-align: center;
  margin-top: 20px;
  font-size: 15px;
  color: #555;
}

.register-link {
  color: #ff6b4a;
  font-weight: 600;
  text-decoration: underline;
  margin-left: 5px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.register-link:hover {
  color: #e85c3e;
}

.otp-input-wrapper {
  position: relative;
  margin: 30px 0;
}

.login-otp-hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.otp-boxes {
  display: flex;
  gap: 15px;
  justify-content: center;
  cursor: text;
}

.otp-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background: white;
  color: #333;
  transition: all 0.3s ease;
  user-select: none;
}

.otp-box.active {
  border-color: #ff7a59;
  box-shadow: 0 0 0 3px rgba(255, 122, 89, 0.1);
}

.otp-box.filled {
  border-color: #ff7a59;
  background: #fff5f2;
}

.logout-icon-link {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  color: #333;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  z-index: 1000;
}
.logout-icon-link:hover {
  background-color: #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.logout-icon {
  font-size: 18px;
}
/*  LOGIN PAGE STYLE ENDS  */

/* REGISTRATION AND PROFILE STYLE STARTS */
.auth-field-group {
  margin-bottom: 15px;
}

.auth-field-group label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  display: block;
  margin-bottom: 6px;
}

/* Upload Box */
.mini-upload-box {
  height: 110px;
  border: 2px dashed #cfcfcf;
  border-radius: 10px;
  text-align: center;
  position: relative;
  padding-top: 18px;
  background: #fafafa;
  cursor: pointer;
}

.mini-upload-box .plus {
  font-size: 28px;
  color: #ff8b32;
  font-weight: 600;
}

.mini-upload-box p {
  font-size: 13px;
  color: #666;
  margin-top: 5px;
}

.mini-upload-box input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.auth-field-group input[type="tel"] {
  padding: 15px;
  border-radius: 8px;
  outline: none;
}

.registration-brand-header {
  position: absolute;
  top: 20px;
  left: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.registration-brand-name {
  font-size: 32px;
  font-weight: 800;
  color: #1e1e1e;
  font-family: "Poppins", sans-serif;
}

.registration-form-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 5px;
}

.registration-form-subtitle {
  text-align: center;
  font-size: 14px;
  margin-bottom: 20px;
  color: #555;
}

.registration-skip-btn {
  margin-top: 10px;
  width: 100%;
  background: transparent;
  border: 2px dashed #888;
  color: #444;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.registration-skip-btn:hover {
  border-color: #000;
  color: #000;
}

.page-wrapper {
  margin-top: auto;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  margin-bottom: 15px;
}
.registration-main-wrapper {
  width: 100%;
  max-width: 1100px;
  position: relative;
  margin-top: 100px !important;
}
.registration-top-navbar {
  background: white;
  padding: 15px 40px;
  border-radius: 12px 12px 12px 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 30px;
  align-items: center;
}

.registration-nav-link {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
}

.registration-nav-link:hover {
  color: #ff7f50;
}

.registration-forms-container {
  position: relative;
  background: white;
  border-radius: 12px 12px 12px 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.registration-form-wrapper {
  padding: 50px 60px;
  transition: all 0.5s ease;
}

.registration-step-section {
  animation: registrationFadeIn 0.5s ease;
}

.registration-step-section.active-step {
  display: block;
}

@keyframes registrationFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.registration-welcome-section {
  margin-bottom: 40px;
}

.registration-welcome-title {
  font-size: 28px;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-weight: 600;
}

.registration-welcome-subtitle {
  color: #666;
  font-size: 15px;
}

.registration-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.registration-field-group {
  margin-bottom: 20px;
}

.registration-input-field {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  transition: all 0.3s ease;
  background: #fafafa;
}

.registration-input-field:focus {
  outline: none;
  border-color: #ff7f50;
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 127, 80, 0.1);
}

.registration-input-field::placeholder {
  color: #999;
}

.registration-terms-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.registration-checkbox-custom {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #ff7f50;
}
.message-container {
  margin-top: 20px;
}

.registration-terms-text {
  color: #666;
  font-size: 14px;
}

.registration-terms-link {
  color: #ff7f50;
  text-decoration: none;
  font-weight: 500;
}

.registration-terms-link:hover {
  text-decoration: underline;
}

.registration-submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #ff8a65 0%, #ff7043 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 127, 80, 0.3);
}

.registration-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 127, 80, 0.4);
}

.registration-submit-btn:active {
  transform: translateY(0);
}
.registration-phone-input {
  position: relative;
  display: flex;
  align-items: center;
}

.registration-phone-prefix {
  position: absolute;
  left: 15px;
  color: #555;
  font-size: 15px;
  pointer-events: none;
  font-weight: 600;
}

.registration-phone-input .registration-input-field {
  padding-left: 45px;
}

.registration-profile-section {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f0f0f0;
}

.registration-avatar-wrapper {
  position: relative;
}

.registration-avatar-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.registration-avatar-icon {
  width: 50px;
  height: 50px;
  fill: #999;
}

.registration-user-info {
  flex: 1;
}
.registration-user-name-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.registration-user-name {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
}

.registration-verified-badge {
  width: 18px;
  height: 18px;
  background: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
}

.registration-user-email {
  color: #666;
  font-size: 14px;
}

.registration-auth-btn {
  padding: 12px 28px;
  background: linear-gradient(135deg, #ff8a65 0%, #ff7043 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 127, 80, 0.3);
}

.registration-auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 127, 80, 0.4);
}

.registration-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.registration-input-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.registration-confirm-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
}

.registration-confirm-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #ff7f50;
  margin-top: 2px;
}

.registration-confirm-text {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.registration-auth-link {
  color: #ff7f50;
  text-decoration: none;
  font-weight: 500;
}

.registration-auth-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .registration-form-wrapper {
    padding: 40px 30px;
  }

  .registration-input-row,
  .registration-form-grid {
    grid-template-columns: 1fr;
  }

  .registration-top-navbar {
    padding: 15px 20px;
  }

  .registration-profile-section {
    flex-direction: column;
    text-align: center;
  }
}

.auth-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.auth-modal-content {
  background-color: #fff;
  padding: 40px 50px;
  border-radius: 15px;
  width: 95%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-20px);
  animation: slideIn 0.4s ease forwards;
}

@keyframes slideIn {
  from {
    transform: translateY(-40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.auth-modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  font-weight: 600;
  color: #ff7043;
  cursor: pointer;
  transition: color 0.3s;
}

.auth-modal-close:hover {
  color: #ff5722;
}

.auth-modal h2 {
  font-size: 26px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  text-align: center;
}

.auth-modal-divider {
  border: 0;
  height: 2px;
  background: linear-gradient(to right, #ff8a65, #ff7043);
  margin-bottom: 30px;
  width: 80px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 2px;
}

.auth-field-group {
  margin-bottom: 25px;
}

.auth-field-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #555;
}

.auth-field-group input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  background: #fafafa;
  font-size: 15px;
  transition: all 0.3s ease;
}
.auth-submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #ff8a65 0%, #ff7043 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 112, 67, 0.3);
}

.auth-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 112, 67, 0.4);
}
.message-container {
  margin-bottom: 20px;
}
/* .custom-alert {
  background-color: #f8d7da;
  color: #842029;
  padding: 15px 20px;
  border-left: 5px solid #dc3545;
  border-radius: 6px;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  animation: slideDown 0.3s ease-out;
}

.custom-alert .alert-icon {
  margin-right: 10px;
  font-size: 20px;
  color: #dc3545;
}

.custom-alert .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #842029;
  cursor: pointer;
}

.custom-alert .close-btn:hover {
  color: #000;
}
@keyframes slideDown {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
} */

.phone-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border: 1.5px solid #dcdcdc;
  border-radius: 8px;
  background: #fafafa;
  padding-left: 48px;
  transition: 0.25s ease;
}

.phone-input-wrapper:hover {
  border-color: #b5b5b5;
}

.phone-input-wrapper:focus-within {
  border-color: #ff7f50;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 127, 80, 0.15);
}

.phone-prefix-pro {
  position: absolute;
  left: 16px;
  font-size: 15px;
  font-weight: 500;
  color: #555;
  user-select: none;
}

.phone-input-pro {
  width: 100%;
  border: none;
  padding: 14px 12px;
  font-size: 15px;
  outline: none;
  background: transparent;
  color: #333;
}

.phone-input-pro::placeholder {
  color: #999;
}

.auth-phone-wrapper {
  padding-left: 44px;
  border-radius: 6px;
}

.custom-alert {
  padding: 15px 20px;
  border-left: 5px solid transparent;
  border-radius: 8px;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 12px;
  animation: slideDown 0.3s ease-out;
  transition: all 0.3s ease-in-out;
}

.custom-alert .alert-icon {
  margin-right: 12px;
  font-size: 20px;
}

.custom-alert .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.custom-alert .close-btn:hover {
  opacity: 1;
}

.custom-alert.success {
  background-color: #e6f9ed;
  color: #166534;
  border-left-color: #16a34a;
}

.custom-alert.success .alert-icon {
  color: #16a34a;
}

.custom-alert.error {
  background-color: #fde8e8;
  color: #7f1d1d;
  border-left-color: #dc2626;
}

.custom-alert.error .alert-icon {
  color: #dc2626;
}

.custom-alert.warning {
  background-color: #fff8e6;
  color: #78350f;
  border-left-color: #f59e0b;
}

.custom-alert.warning .alert-icon {
  color: #f59e0b;
}

.custom-alert.info {
  background-color: #e0f2fe;
  color: #0c4a6e;
  border-left-color: #0284c7;
}

.custom-alert.info .alert-icon {
  color: #0284c7;
}
@keyframes slideDown {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* REGISTRATION AND PROFILE STYLE ENDS */
