/*login and register css start here*/


.main-wrapper {
    padding: 50px 0;
    font-family: 'Rajdhani', sans-serif;
} 
  .login-wrap {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px; 
    -webkit-font-smoothing: antialiased;
    font-family: 'Rajdhani', sans-serif;
  }

  .login-wrap * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Rajdhani', sans-serif;
  }

  .login-wrap .card {
    background: #ffffff;
    border-radius: 24px;
    display: flex;
    width: 100%;
    max-width: 960px;
    min-height: 600px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
        flex-direction: row;
  }

  /* === LEFT PANEL === */
  .login-wrap .left {
    flex: 1;
        background: linear-gradient(145deg, #030B15 0%, #030B15 100%);
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,#03111F 0%,#071D35 50%,#0A2747 100%);
    background: 
    /* Center warm glow */
    radial-gradient(ellipse 80% 60% at center, rgba(201,162,74,0.30) 0%, rgba(168,132,46,0.15) 35%, transparent 70%),
    /* Bottom gold + white blend */
    radial-gradient(ellipse 90% 50% at bottom center, rgba(255,255,255,0.12) 0%, rgba(201,162,74,0.35) 25%, rgba(168,132,46,0.20) 50%, transparent 75%),
    /* Top left white shimmer */
    radial-gradient(ellipse 60% 40% at top left, rgba(255,255,255,0.08) 0%, rgba(201,162,74,0.18) 40%, transparent 65%),
    /* Bottom corners */
    radial-gradient(ellipse at bottom right, rgba(255,255,255,0.06) 0%, rgba(168,132,46,0.22) 40%, transparent 65%),
    radial-gradient(ellipse at bottom left, rgba(201,162,74,0.20) 0%, transparent 45%),
    linear-gradient(145deg, #030F1C 0%, #061828 35%, #0A2240 65%, #0D2B50 100%);
  position: relative;

      background: linear-gradient(124deg, #f9f8f6 0%, #f4eadd 45%, #c9a24adb 85%, #a8842e7a 100%);
}

/* Top border — gold to white to gold */
.login-wrap .left::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, 
    transparent 0%, 
    #C9A24A 20%, 
    #ffffff 50%, 
    #C9A24A 80%, 
    transparent 100%);
  opacity: 0.85;
}

/* Bottom border — gold to white to gold */
.login-wrap .left::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, 
    transparent 0%, 
    #C9A24A 20%, 
    #ffffff 50%, 
    #C9A24A 80%, 
    transparent 100%);
  opacity: 0.85;
}
  /* Abstract background shapes for depth */
  .login-wrap .bg-shape1 {
    position: absolute; top: -100px; left: -100px; width: 300px; height: 300px;
    border-radius: 50%; background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%); pointer-events: none;
  }
  .login-wrap .bg-shape2 {
    position: absolute; bottom: -150px; right: -50px; width: 400px; height: 400px;
    border-radius: 50%; background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%); pointer-events: none;
  }

  .login-wrap .brand {
    display: flex; align-items: center; gap: 12px; margin-bottom: 2rem; z-index: 1;
  } 
  .login-wrap .brand img.logo-img {
    max-width: 130px;
}
 
  .login-wrap .promo-text { z-index: 1; margin-bottom: 2rem; }
  .login-wrap .promo-text h3 { font-size: 28px; font-weight: 600; color: #222222; margin-bottom: 8px; line-height: 1.2; letter-spacing: -0.5px; }
  .login-wrap .promo-text p {
     font-size: 16px;
    color: #222222;
    font-weight: 500;
    letter-spacing: 0.2px;
   }

  /* New Check List Styling */
  .login-wrap .check-list { display: flex; flex-direction: column; gap: 18px; z-index: 1; flex: 1; }
  .login-wrap .check-item { display: flex; align-items: center; gap: 14px; transition: transform 0.3s ease; }
  .login-wrap .check-item:hover { transform: translateX(5px); }
  .login-wrap .check-item i {
    width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
    background: rgba(16, 185, 129, 0.15); /* Subtle green background */
    color: #A8842E; /* Emerald green checkmark */
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: bold;
  }
  .login-wrap .check-item span { 
        font-size: 16px;
    color: #222222;
    font-weight: 500;
    letter-spacing: 0.2px;
  }

  .login-wrap .trust-badge {
    margin-top: auto;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
        background: #2222229c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}
  .login-wrap .trust-badge i { color: #A8842E; font-size: 14px; }
  .login-wrap .trust-badge span { font-size: 12px; color: #fff; font-weight: 500; }

  /* === RIGHT PANEL === */
  .login-wrap .right {
    flex: 1.2;
    padding: 3.5rem 4rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
        background: linear-gradient(231deg, #1a1508 0%, #231c09 18%, #1c1608 35%, #141210 48%, #0F0E0C 55%, #1a1508 65%, #211a08 82%, #161208 100%) !important;
  }

  .login-wrap .header { margin-bottom: 2.5rem; }
  .login-wrap .header h2 { font-size: 32px; font-weight: 700; color: #030B15; margin-bottom: 6px; letter-spacing: -0.5px; 
    color: #E8C97A !important;
    text-shadow: 0 0 8px rgba(201, 162, 74, 0.50), 0 0 20px rgba(201, 162, 74, 0.25), 0 0 40px rgba(201, 162, 74, 0.10);}
  .login-wrap .header p {
        font-size: 16px;
    color: #000000;
    font-weight: 500;
    
    color: #C4A45A !important;
   }

  .login-wrap .form-group { margin-bottom: 20px; }
  .login-wrap .labels { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
  .login-wrap label { font-size: 15px; font-weight: 600; color: #000;    color: #C4A45A !important; }
  .login-wrap .forgot-link { font-size: 13px; font-weight: 600; color: #A8842E; text-decoration: none; transition: color 0.2s; }
  .login-wrap .forgot-link:hover { color: #A8842E; text-decoration: underline; }
  
  .login-wrap .input-wrapper i.icon { font-size: 18px; color: #9ca3af; transition: color 0.2s; }
  .login-wrap .input-wrapper:focus-within i.icon { color: #A8842E; }
  
  .login-wrap .input-wrapper input, .login-wrap .input-wrapper input {
    outline: none;
    font-size: 15px;
    color: #1f2937;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    height: 52px;
    padding: 16px;
    transition: all 0.2s ease-in-out;
    box-shadow: unset;
  }
  .login-wrap .input-wrapper input::placeholder { 
    color: #9ca3af; 
    }
  .login-wrap .input-wrapper input:focus{
    border-color:#A8842E;

  }
  .login-wrap .form-group select {
    outline: none;
    font-size: 15px;
    color: #1f2937;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    height: 52px;
    padding: 16px;
    transition: all 0.2s ease-in-out;
    box-shadow: unset;
}

  .login-wrap .btn-eye {
    background: none; border: none; padding: 0; cursor: pointer; color: #9ca3af;
    display: flex; align-items: center; justify-content: center; transition: color 0.2s;
  }
  .login-wrap .btn-eye:hover { color: #C4A45A; }

  /* Custom Checkbox */
  .login-wrap .options-row { margin-bottom: 30px; margin-top: 24px; }
  .login-wrap .checkbox-container {
    display: flex; align-items: center; gap: 10px; cursor: pointer; width: fit-content;
  }
  .login-wrap .check-box {
    width: 20px; height: 20px; border-radius: 6px;
    border: 1.5px solid #d1d5db; background: #ffffff;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
  }
  .login-wrap .check-box.active { background: #A8842E; border-color: #A8842E; }
  .login-wrap .check-box i { font-size: 12px; color: #ffffff; opacity: 0; transform: scale(0.5); transition: all 0.2s; }
  .login-wrap .check-box.active i { opacity: 1; transform: scale(1); }
  .login-wrap .check-label { font-size: 14px; color: #C4A45A; font-weight: 500; user-select: none; }

  /* Submit Button */
  .login-wrap .btn-submit {
    background: linear-gradient(135deg, #E2C275 0%, #C9A24A 50%, #A8842E 100%);
    border: none;
    color: #ffffff;
        border-radius: 4px;
        padding: 14px 24px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.25s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .login-wrap .btn-submit:hover { 
       filter: brightness(1.06);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(168, 132, 46, 0.35);
  }
  .login-wrap .btn-submit:active { transform: scale(0.98); }
  
  .login-wrap .signup-text {
    text-align: center; margin-top: 24px; font-size: 14px; color: #C4A45A;
  }
  .login-wrap .signup-text a { color: white; font-weight: 600; text-decoration: none; }
  .login-wrap .signup-text a:hover { text-decoration: underline; }
 /* Custom CSS for Grid Inputs */
.login-wrap .grid-form .form-group {
    margin-bottom: 10px;
}

.login-wrap .input-wrapper {
    height: 48px;  
}
.login-section {
    min-height: 100vh;
    padding: 50px 0;
    display: grid;
    align-items: center;
    padding: 30px 0 30px;
    position: relative;
    z-index: 1;
    background-color: hsl(0 0% 11% / 1) !important;
}
.login-section::before, .login-section::after {
    content: "";
    position: absolute;
    width: 100%;
    background-image: url(/Content/Home/assets-growly/images/wave.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}
.login-section::after {
    bottom: 0;
    height: 330px;
    opacity: 0.15;
}
.login-section::before {
    background-image: url(/Content/Home/assets-growly/images/login-bg.jpg);
    height: 100%;
    opacity: 0.05;
}



@media (max-width: 991px) {
  .why-choose-us {
    padding: 80px 0 90px;
  }

  .why-choose-slider .choose-item {
    min-height: 260px;
    padding: 45px 30px;
  }
}


@media (max-width: 767px) {
.login-wrap .card { flex-direction: column; }
    .login-wrap .left { padding: 1.5rem; }
    .login-wrap .right { padding: 1.5rem; }
    .grid-form {
        grid-template-columns: 1fr !important;
    }
    .grid-form .form-group {
        grid-column: span 1 !important;
    }
  }

@media (max-width: 575px) {
  .why-choose-us {
    padding: 70px 0 80px;
  }

  .why-choose-slider .choose-active .slick-list {
    margin: 0 -8px;
  }

  .why-choose-slider .choose-slide {
    padding: 0 8px;
  }

  .why-choose-slider .choose-item {
    min-height: 240px;
    padding: 40px 24px;
  }

  .why-choose-slider .choose-arrow {
    width: 42px;
    height: 42px;
    font-size: 13px;
  }
}
