
/* Form elements */
.form-control {
  display: block;
  width: 100%;
  padding: var(--space-8) var(--space-12);
  font-size: var(--font-size-md);
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-base);
  transition: border-color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard);
}

textarea.form-control {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
}

select.form-control {
  padding: var(--space-8) var(--space-12);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: var(--select-caret-light);
  background-repeat: no-repeat;
  background-position: right var(--space-12) center;
  background-size: 16px;
  padding-right: var(--space-32);
}

/* Add a dark mode specific caret */
@media (prefers-color-scheme: dark) {
  select.form-control {
    background-image: var(--select-caret-dark);
  }
}

/* Also handle data-color-scheme */
[data-color-scheme="dark"] select.form-control {
  background-image: var(--select-caret-dark);
}

[data-color-scheme="light"] select.form-control {
  background-image: var(--select-caret-light);
}

.form-control:focus {
  border-color: var(--color-primary);
  outline: var(--focus-outline);
}

.form-label {
  display: block;
  margin-bottom: var(--space-8);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.form-group {
  margin-bottom: var(--space-16);
}

/* Card component */
.card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--duration-normal) var(--ease-standard);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card__body {
  padding: var(--space-16);
}

.card__header,
.card__footer {
  padding: var(--space-16);
  border-bottom: 1px solid var(--color-card-border-inner);
}

/* Status indicators - simplified with CSS variables */
.status {
  display: inline-flex;
  align-items: center;
  padding: var(--space-6) var(--space-12);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}


.status--warning {
  background-color: rgba(
    var(--color-warning-rgb, 168, 75, 47),
    var(--status-bg-opacity)
  );
  color: var(--color-warning);
  border: 1px solid
    rgba(var(--color-warning-rgb, 168, 75, 47), var(--status-border-opacity));
}

.status--info {
  background-color: rgba(
    var(--color-info-rgb, 98, 108, 113),
    var(--status-bg-opacity)
  );
  color: var(--color-info);
  border: 1px solid
    rgba(var(--color-info-rgb, 98, 108, 113), var(--status-border-opacity));
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus-visible {
  outline: var(--focus-outline);
  outline-offset: 2px;
}

/* Dark mode specifics */
[data-color-scheme="dark"] .btn--outline {
  border: 1px solid var(--color-border-secondary);
}


/* END PERPLEXITY DESIGN SYSTEM */
/* Custom color overrides for the specific design */
:root {
  --custom-bg: #F5F2E8;
  --custom-primary: #8B6F47;
  --custom-primary-hover: #A0835C;
  --custom-accent: #E8A87C;
  --custom-text: #3D2914;
  --custom-success: #4CAF50;
  --custom-error: #F44336;
  --custom-white: #FFFFFF;
  --custom-light: #FAF8F4;
}


.main-container {
  display: flex;
}

/* Left Side - Branding Section */
.branding-section {
background: url("/app/uploads/2025/08/puja-essentials-WhsEpHj4.jpg")no-repeat center;
  background-size: cover;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 52%;
}

.branding-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
background: #5c2c0cc2;
  pointer-events: none;
}

.branding-content {
  text-align: center;
  z-index: 1;
  position: relative;
  display: none;
}
body.my-account .pt-50{
  padding-top: 20px!important;
}

.main-heading {
  color: #fff;
  font-size: 45px;
  line-height: 57px;
  margin-bottom: 15px!important;
  padding-top:0px !important;
  font-weight: 500;
}

.intro-text {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;

}

.selling-points {
 display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.selling-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
  width: calc(50% - 20px);
  box-sizing: border-box;
}

.selling-point:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.selling-point-icon {
  font-size: 1.5rem;
  min-width: 40px;
  height: 40px;
  background: var(--custom-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.selling-point-icon img{
  object-fit: contain;
  max-width: 20px;
}

.selling-point-content h3 {
font-size: 18px;
  font-weight: 600;
  color: var(--custom-white);
  margin-bottom: 4px;
}

.selling-point-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 19px;
  margin: 0;
}
.form-section {
  flex: 1;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
}

.form-container {
  width: 100%;
  min-height: 380px;
}

.tab-navigation {
display: flex;
background: #fdf8ef;
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 32px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tab-button {
  flex: 1;
  padding: 12px 20px;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
color: var(--main-color);
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.6;
}

.tab-button.active {
  background: #FFFFFF;
  opacity: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #8B6F47;
}

.tab-button:hover:not(.active) {
  opacity: 0.8;
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-content.active {
  display: block;
}

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

.auth-form h2 {
  font-size: 24px;
  font-weight: 600;
  color: #3D2914;
  margin-bottom: 8px;
  text-align: center;
}

.form-subtitle {
  text-align: center;
  color: #626C71;
  margin-bottom: 32px;
  font-size: 18px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 12px;
  color: #3D2914;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(94, 82, 64, 0.2);
  border-radius: 8px;
  font-size: 14px;
  transition: all 150ms cubic-bezier(0.16, 1, 0.3, 1);
  background: #FFFFFF;
}

.form-control:focus {
  outline: none;
  border-color: #8B6F47;
  box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.1);
}


.input-with-button {
  display: flex;
  gap: 8px;
}

.input-with-button .form-control {
  flex: 1;
}

.verify-btn {
  padding: 12px 16px;
  border: 2px solid #E8A87C;
  background: transparent;
  color: #E8A87C;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 150ms cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.verify-btn:hover {
  background: #E8A87C;
  color: #FFFFFF;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 8px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 12px;
  color: #3D2914;
}

.checkbox-container input {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(94, 82, 64, 0.2);
  border-radius: 6px;
  margin-right: 8px;
  position: relative;
  transition: all 150ms cubic-bezier(0.16, 1, 0.3, 1);
}

.checkbox-container input:checked + .checkmark {
  background: #8B6F47;
  border-color: #8B6F47;
}

.checkbox-container input:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: bold;
}

.forgot-password {
  color: #8B6F47;
  text-decoration: none;
  font-size: 12px;
  transition: color 150ms cubic-bezier(0.16, 1, 0.3, 1);
}

.forgot-password:hover {
  color: #A0835C;
}

.checkbox-container a {
  color: #8B6F47;
  text-decoration: none;
}

.checkbox-container a:hover {
  color: #A0835C;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.privacy-text {
  text-align: center;
  font-size: 11px;
  color: #626C71;
  margin-top: 16px;
  line-height: 1.5;
}

.privacy-text a {
  color: #8B6F47;
  text-decoration: none;
}

.privacy-text a:hover {
  color: #A0835C;
}

#header-wrap{
  display: none;
}

.woocommerce form.register {
  border: 0px solid #d3ced2;
  padding: 0;
  margin: 0;
  text-align: left;
  border-radius: 0;
  display: block !important;
}

.woocommerce-form-register.register p{
font-size: 12px;
}

#register-tab .register .form-row label{
  font-size: 17px;
  font-weight: 400;
}
.xoo-ml-ioc-input input.xoo-ml-otp-input{
  padding-left: 15px;
  border: 1px solid #ddd;
  font-family: inherit !important;
  border-radius: 6px;
}

@media(max-width:1200px){
  .branding-section{
    display: none!important;;
  }

  #customer_login .form-section{
max-width:600px;
margin-left:auto;
margin-right:auto;
  }
}