.log-sec {
         background:#215412d1; /* Olive Green background */
    }
    .login-box {
      background: rgba(255, 255, 255, 0.1);
      padding: 30px;
      border-radius: 12px;
      text-align: center;
      width: 100%;
    }
    .login-box p{
     font-size: 15px;
     margin-bottom:10px;
    }
    .login-logo img {
      width:150px;
      border-radius: 10px;
      margin-bottom: 15px;
    }
    .form-control {
      border-radius: 8px;
    }
    .btn-signin {
      background: #fff;
      font-weight: bold;
      border-radius: 8px;
      padding: 10px;
      width: 100%;
    }
    .btn-signin:hover{
         background:#e1e1e1;
         color:#000;
    }
    .footer-links a {
      color: #fff;
      text-decoration: none;
      margin: 0 8px;
    }
    .footer-links a:hover {
      text-decoration: underline;
    }
    
    @media (max-width: 767px) { 
        .forgate{
                font-size: 13px;
        }
    }
    
    /* -------- Wrapper -------- */
.checkout-wrapper {
  max-width: 700px;
  margin: 30px auto;
}
.checkout-area .billing-area-2 {
  width: calc(100% - 0px)!important;
    margin-left:0px!important;
  border: 1px solid #eee;
}

/* -------- Form Containers -------- */
.form-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

/* -------- Headings -------- */
.form-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--cheakout-page, #0c9d1d);
  margin-bottom: 15px;
}

/* -------- Inputs -------- */
.form-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.form-input.is-focus {
  border-color: #0c9d1d;
  box-shadow: 0 0 0 3px rgba(12, 157, 29, 0.1);
}
.form-input.is-hover {
  border-color: #1ea63d;
}

/* -------- Labels -------- */
.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
}

/* -------- Rows -------- */
.form-row-2,
.form-row-3 {
  display: flex;
  gap: 15px;
}
.form-row-2 > div,
.form-row-3 > div {
  flex: 1;
}

/* -------- Radio Buttons -------- */
.radio-group {
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
}
.radio-option {
  font-weight: 500;
  cursor: pointer;
}

/* -------- Billing Toggle -------- */
.billing-form-toggle {
  display: none;
}
.billing-form-toggle.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* -------- Buttons -------- */
.btn-submit {
  background: var(--cheakout-page, #0c9d1d);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.btn-submit:hover {
  background: #097e18;
}

/* -------- Responsive -------- */
@media (max-width: 600px) {
  .form-row-2,
  .form-row-3 {
    flex-direction: column;
  }
  .radio-group {
    display: block;
  }
  .radio-option {
    margin-bottom: 5px;
  }
}
.cont{
    color:#d43b3b;
    font-weight:600;
}
    