    :root {
    --primary-color: #a1866a;
    --secondary-color: #f5f1ec;
    --dark-color: #333;
    --light-color: #fff;
    --accent-color: #d4af37;
}
    * {
      margin: 0; padding: 0; box-sizing: border-box;
      font-family: 'Helvetica Neue', Arial, sans-serif;
    }

body {
  background: linear-gradient(rgba(0, 0, 0, 0.68), rgb(0, 0, 0)), url('./../../bg/login.jpeg');
  background-size: cover;
  background-position: center;
  /* min-height: 100vh; */
  display: flex;
  justify-content: center;
  align-items: center;
}
.register-container {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.register-container {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.5s ease-out;
    margin: 30px;
    padding: 30px;
}
@media (max-width: 900px) {


.register-container {
  width: 100%;
  max-width: none;
  border-radius: 0;
  margin: 0;
  padding: 20px;
  height: 100vh;
  box-sizing: border-box;
  overflow-y: auto;
}
.register-container {
  align-items: baseline !important;
}
}




    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .step {
      display: none;
    }

    .step.active {
      display: block;
    }

    .form-group {
      margin-bottom: 20px;
    }

    label {
      display: block;
      margin-bottom: 5px;
      color: #555;
    }

    input, select {
      width: 100%;
      padding: 10px 12px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 1rem;
    }
.btn {
  padding: 12px 20px;
  background-color: #a1866a !important;
  color: white !important;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  font-weight: bold;
  transition: background 0.3s;
}

    .btn:hover {
      background-color: #8a7157;
    }

    .button-group {
      display: flex;
      justify-content: space-between;
    }

.plans label {
    display: block;
    /* margin: 10px 0; */
}

    .plans input[type="radio"] {
      margin-right: 10px;
    }

h2 {
  margin-bottom: 20px !important;
  color: #a1866a !important;
  font-weight: 400;
  text-align: center;
}
    .login-header {
  text-align: center;
  margin-bottom: 30px;
}

.login-header .logo {
    width: 247px;
    height: auto;
    margin-bottom: 10px;
}

.login-header h1 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 10px;
}

.login-header p {
  color: #777;
  font-size: 1rem;
}

.step {
  display: none;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.4s ease;
  position: absolute;
  width: 100%;
}

.step.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.file-upload {
  position: relative;
  border: 2px dashed #ccc;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  color: #555;
  transition: border-color 0.3s;
}

.file-upload:hover {
  border-color: #a1866a;
  background-color: #fafafa;
}

.file-upload input[type="file"] {
  opacity: 0;
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.plans {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  flex-direction: row;
  width: 100%;
}

.plan-card {
  position: relative;
  flex: 1;
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 10px;
  transition: border-color 0.3s, transform 0.3s;
  cursor: pointer;
  /* overflow: hidden; */
  width: 50%;
}

.plan-card input[type="radio"] {
  display: none;
}

.plan-card label {
  display: block;
  padding: 15px 15px;
  height: 100%;
}

.plan-card:hover {
  transform: translateY(-5px);
  border-color: #a1866a;
}

.plan-card input[type="radio"]:checked + label {
  border: 1px solid #a1866a;
  background-color: #fffbea;
  border-radius: 12px;
}

.plan-header {
  /* text-align: center; */
  margin-bottom: 15px;
}

.plan-name {
  font-size: 1.3rem;
  /* color: #a1866a; */
  margin-bottom: 5px;
}

.plan-price {
  font-size: 1.1rem;
  color: #000;
}

.plan-period {
  font-size: 0.9rem;
  color: #888;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.plan-features li {
  margin: 5px 0;
  font-size: 0.85rem;
  color: #333;
}
/*plan*/

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        
        /* Plan Page */
        .plans-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }
        
.plan-card {
  background-color: var(--light-color);
  border-radius: 13px;
  /* padding: 2rem; */
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s;
}
        .plan-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }
        
        .plan-card.featured {
            border: 2px solid var(--accent-color);
            position: relative;
        }
        
        .featured-badge {
            position: absolute;
            top: -10px;
            right: 20px;
            background-color: var(--accent-color);
            color: var(--light-color);
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        
.plan-header {
  /* text-align: center; */
  margin-bottom: 15px;
}
        
.plan-name {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}
        
.plan-price {
  font-size: 1.3rem;
  /* color: var(--primary-color); */
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}
        
        .plan-period {
            color: #777;
        }
        
.plan-features {
   margin-bottom: 0.25rem; 
}
.plan-features li {
  margin-bottom: 0rem;
  list-style: none;
  display: flex;
  align-items: center;
}
        
.overview-box {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-top: 15px;
    color: #333;
    line-height: 1.6;
}

.overview-box h3 {
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
  margin-top: 20px;
  font-size: 18px;
  color: var(--primary-color);
  text-align: center;
}

.overview-box p {
    margin: 6px 0;
}

.overview-box span {
    font-weight: bold;
}
