body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color:#FFF0D5;
  
}

.sell-container {
  max-width: 800px;
  margin-left: 1in;
   padding-top: 1in; 
 }


.sell-switch {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;

}

.active-tab {
  background-color: #9C1137;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
}

.inactive-tab {
  background: none;
  color: #9C1137;
  border: 2px solid #ffaa0f;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
}

.price-balance-section {
  display: flex;
  
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.price-box,
.balance-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon {
  width: 48px;
  height: 48px;
}

.price-title,
.balance-title {
  font-weight: 600;
  margin: 0;
}

.price-value {
  color: #333;
  font-size: 20px;
  margin: 4px 0;
}

.balance-value {
  color: #666;
  font-size: 20px;
  margin: 4px 0;
}

.live-tag {
  color: red;
  font-size: 12px;
  margin-left: 8px;
}

.quick-title {
  margin-bottom: 20px;
  font-size: 22px;
  color: #9C1137;
}

.quick-sell-box {
  border: 2px solid #ffaa0f;
  border-radius: 16px;
  padding: 30px;
  background: white;
}

.sell-fields {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 20px;
}

.field {
  flex: 1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #9C1137;
}

.field input {
  width: 100%;
  border: none;
  border-bottom: 2px solid #ffaa0f;
  font-size: 18px;
  padding: 8px;
  background: transparent;
  color: #666;
}

.or {
  font-weight: bold;
  color: #9C1137;
  text-align: center;
 
}

.sell-btn-container {
  text-align: center;
}

.proceed-btn {
  background-color: #9c1137; /* ✅ updated */
  color: white;              /* ✅ white text for contrast */
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
}


/* proceedtosellgold.css */

.container {
  max-width: 900px;
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  padding: 0 20px;
}




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

label {
  margin-bottom: 8px;
  font-weight: 500;
  color: #000;
}

input {
  padding: 12px 15px;
  font-size: 14px;
  border: 1px solid #333;
  border-radius: 10px;
  outline: none;
  background-color: #ffffff;
  color: #888;
}



.proceed-btn {
 
  padding: 15px;
  font-size: 18px;
  background-color: #9C1137;
  color: white;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;

}


.proceed-btn:hover {
  background-color: #800826;
}

/* paymentmethods1.css */

.upi-container {
  max-width: 400px;
  margin-left: 5px;
}

.upi-header {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 10px;
  font-size: 15px;
}

.edit-btn {
  background-color: #9C1137;
  color: white;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 8px;
  text-transform: uppercase;
}

.upi-label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
}

input[type="text"] {
  width: 80%;
  padding: 14px 16px;
  font-size: 14px;
  border: none;
  outline: none;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 0 0 1px #333 inset;
  margin-bottom: 25px;
  color: #555;
}

.confirm-btn {
  padding: 12px 32px;
  background-color: #9C1137;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
}


/* Bank Accounts css */

.bank-form {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .form-group {
      flex: 1 1 48%;
      display: flex;
      flex-direction: column;
    }

    label {
      margin-bottom: 8px;
      font-weight: 500;
      color: #000;
    }

    input, select {
      width: 87%;
      padding: 12px 16px;
      border: 1px solid #333;
      border-radius: 12px;
      font-size: 16px;
      outline: none;
      background-color: #fff;
    }

    input::placeholder {
      color: #aaa;
    }

    /* Responsive: Stack on smaller screens */
    @media (max-width: 768px) {
      .form-group {
        flex: 1 1 100%;
      }
    }





/* Logout css */

.container1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1in; 
  height: 100vh;

}

h1 {
  color: #555;
  font-size: 24px;
  margin-bottom: 30px;
}

.icon-circle {
  background-color: #f8f6f6;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.icon-circle i {
  font-size: 60px;
  color: #9f1239;
}

.continue1-btn {
  background-color: #9f1239;
  color: white;
  padding: 10px 30px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.continue1-btn:hover {
  background-color: #7f0f2e;
}
