@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&family=Zen+Dots&display=swap');

/* Global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;

}

body {
  background-color: #FFFFFF;
}

/* Message styles */
.message {
  color: white;
  /* text-align: center; */
  padding-top: 10px;
  width: 300px;
  /* Position 
    /* Align it to the right side */
  border-radius: 5px;
  font-size: 14px;
  z-index: 1000;
  /* Ensure it appears above other content */
}

.message.success {
  background-color: green;
}

.message.error {
  color: red;
}

.login-container {
  width: 100%;
}


.quote-icon {
  width: 5rem;
  height: 5rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 25px;
  margin-bottom: 20px;
  font-size: 4rem;
  cursor: pointer;
}

.quote-icon:hover {
  animation: slideIn 0.5s ease-out forwards;
}

@media (max-width: 1162px) {
  .stat-card{
    display: flex;
    gap: 0.7rem;
  }
}


@media (max-width: 600px) {

  .form-container{
    padding: 20px !important;
  }

  .form-container form{
    width: 100% !important;
    padding:0  !important;
  }

  .stat-numbered{
    width: 100% !important;
  }

  .stat-card{
    padding: 24px 10px!important;
  }

  .header {
    width: 100% !important;
  }

  .login-container {
    width: 100%;
    padding: 10px 0px;
  }

  input,
  button {
    font-size: 14px;
    padding: 10px;
  }

  .banner h2 {
    font-size: 1rem;
  }

  .subscribe-content {
    display: flex;
    justify-content: center;
  }
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.left-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: auto;
  /* padding: 10px; */
  /* background-color: #6143E4; */
}

.right-side {
  display: flex;
  flex-direction: column;
  /* justify-content: center;
    align-items: center; */
  width: 50%;
  background-color: #F5F3FF;
  height: 100%;
}

.banner {
  background-color: #6143E4;
  background-image: linear-gradient(135deg, rgba(97, 67, 228, 0.92) 0%, rgba(97, 67, 228, 0.98) 100%), url('/api/placeholder/800/600');
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 20px 50px;
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.otp-banner{
   background-color: #6143E4;
   width: 100%;
  background-image: linear-gradient(135deg, rgba(97, 67, 228, 0.92) 0%, rgba(97, 67, 228, 0.98) 100%), url('/api/placeholder/800/600');
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 50px;
  position: relative;
  overflow: hidden;
  height: 100vh;
}


@keyframes slideIn {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  100% {
    transform: translateY(-20px);
    opacity: 1;
  }
}

.banner h2 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 30px;
  color: white;
}

.otp-banner h2 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 30px;
  color: white;
}


.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 12px;
  background-color: #F5F3FF;
  overflow: hidden;
}

.author-info h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 14px;
  opacity: 0.8;
}

.car-illustration {
  position: absolute;
  bottom: -80px;
  right: -40px;
  width: 500px;
  opacity: 0.15;
}

.form-container {
  display: flex;
  height: 100%;
  background-color: #FFFFFF;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 4em 0 4rem;
}

.header {
  margin-bottom: 40px;
  width: 80%;
}

.otp-header {
  margin-bottom: 40px;
  width: 100%;
}

.otp-header h2{
  font-size: 2.5rem;
  text-align: left;
  font-weight: 600;
  color: #333;
}

.otp-header p {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
}

.header h2 {
  font-size: 2.5rem;
  text-align: left;
  font-weight: 600;
  color: #333;
}

.header p {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
}

.form-group {
  width: 100%;
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 16px;
  color: #555;
  margin-bottom: 8px;
}

.input-container {
  position: relative;
}

.input-container input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  background-color: #fff;
  transition: all 0.3s;
}

.input-container input:focus {
  outline: none;
  border-color: #6143E4;
  box-shadow: 0 0 0 3px rgba(97, 67, 228, 0.1);
}

.input-container .icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
}

.stats-container {
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.label-class{
  display: flex;
  justify-content: center;
  align-items: center;
}

.stat-labeled{
  font-size: 14px;
  font-weight: 600;
  /* color: #666; */
  padding: 10px 15px;
  border-radius: 10px;
}

.stat-labeled:hover{
  background-color: rgb(255 255 255 / 0.2);
}

.stat-labeled{
  font-size: 14px;
  font-weight: 500;
  /* color: #666; */
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
}

.stat-label1{
  font-size: 14px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 10px;
    background-color: rgb(255 255 255 / 0.2);
  cursor: pointer;
}

.stat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.stat-numbered {
  width: 70%;
  font-size: 32px;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}

button.loginBtn {
  margin-top: 10px;
  background-color: #6143E4;
  color: white;
  border: none;
  padding: 14px;
  width: 20%;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

button.loginBtn:hover {
  background-color: #5039c0;
}

.policy {
  pointer-events: none;
  user-select: none;
  color: #666;
  font-size: 16px;
  line-height: 1.5;
  text-align: start;
  font-weight: 400;
}



.footer {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  width: 80%;
  height: 100px;
}

.subscribe-link {
  border: 1px solid #6143E4;
  padding: 0.75rem 1.5rem;
  font-size: 16px;
  font-weight: 500;
  color: #6143E4;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
  transition: color 1s ease;
  overflow: hidden;
  z-index: 1;
  position: relative;
}

.subscribe-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #6143E4;
  transition: left 1s ease;
  z-index: -1;
}

.subscribe-link:hover::before {
  left: 0;
}


.btn-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 5px;
}

.btn-send{
  background-color: #FF754B;
  color: white;
  border: none;
  padding: 16px 30px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-group a {
  text-decoration: none;
  color: #6143E4;
  font-size: 16px;
  font-weight: 500;
}

.otp-container {
  display: flex;
  /* justify-content: center; */
  gap: 12px;
}

.otp-input {
  width: 80px !important;
  height: 70px;
  border: 1px solid #ddd;
  border-radius: 12px !important;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  color: #333;
  transition: all 0.3s;
}

.otp-input:focus {
  outline: none;
  border-color: #6143E4;
  box-shadow: 0 0 0 3px rgba(97, 67, 228, 0.1);
}

.verify-btn {
  background-color: #6143E4;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 85%;
  margin: 20px 0px;
}

.verify-btn:hover {
  background-color: #5039c0;
}

/* Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}

.close-popup {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #777;
}

.popup-title {
  margin-top: 0;
  color: #333;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
}

.form-group div{
  width: 100%;
  display: flex;
  gap: 1rem;
  padding: 0.75rem;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #C7C7C7;
  box-sizing: border-box;
}

.form-group input{
  width: 100%;
  background-color: none;
  outline: none;
  border: none;
  color: #878790;
  
}
.form-group textarea {
  width: 100%;
  padding: 30px 0;
  background-color: none;
  outline: none;
  border: none;
  resize: none !important;
    color: #878790;

}

.version-name{
  margin-bottom: 5px;
  text-align: left;
  padding-left: 20px; 
  background-color: #ffffff;
  color: #878790;
}

.version-name a{
  color: #878790;
  text-decoration: none;
  font-size: 12px;
}

.button-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap:1rem
}

.link-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.submit-button {
  background-color: #6c5ce7;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  /* margin-top: 1rem; */
}


.form-group small {
  display: block;
  margin-top: 4px;
  color: #777;
  font-size: 0.8rem;
}

.timer-clock {
  font-size: 1rem;
  font-weight: 600;
  /* text-align: center; */
  color: #6143E4;
  margin-bottom: 20px;
}

.resendBtn {
  background-color: #fff;
  color: #6143E4;
  border: none;
  /* padding: 16px; */
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.success-popup {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #ffffff;
  color: #6143E4;
  padding: 10px 20px;
  border-radius: 5px;
  z-index: 1000;
  opacity: 0;
  animation: fadeInOut 2s forwards;
}


.logo {
  position: absolute;
  top: 10px;
  left: 10px;

}

.auction-stats {
  display: none;
  width: 80%;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border: 1px solid #e2e8f0;

}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.stat-icon {
  width: 40px;
  height: 40px;
  background: #6143E4;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.stat-content {
  flex: 1;
}

.report-card{
    background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-number {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  display: block;
}

.p-text{
    font-size: 16px;
  color: rgb(255 255 255 / 0.8);
  margin-top: 2px;
  font-weight: 500;
}

.stat-label {
  font-size: 14px;
  color: #666;
  margin-top: 2px;
}

.form-container form {
  width: 80%;
  padding: 0 0.78rem;
}

.subscribe-link:hover {
  /* background-color: #6143E4; */
  color: white;
}

.input-group{
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 16px;
  gap: 10px;
}

.input-grop{
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 16px;
  gap: 10px;

}

.input-grop input{
  /* width:  100%; */
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  background-color: #fff;
  transition: all 0.3s;
}

.input-grop textarea {
  width: 100%;
  height: 100px;
  padding: 20px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  background-color: #fff;
  transition: all 0.3s;
  /* resize: none; */
}

@media (max-width: 938px) {
  .container {
    flex-direction: column;
    height: auto;
  }

  .left-side {
    width: 100%;
    order: 1;
  }

  .search-bar{
    display: flex;
  }

  .banner{
    height: auto;
    padding: 20px 20px;
    background-size: cover;
    background-position: center;
  }

  .right-side {
    width: 100%;
    order: 2;
  }

  .button-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .stat-number {
    font-size: 20px;
  }

  .stat-label {
    font-size: 12px;
  }


  .second-policy {
    display: block;
    color: #9b9b9b;
    text-align: center;
  }


  .form-container input{
    padding: 0px;
  }

  .search-bar{
    width: 100% !important;
  }

  .report-card{
    display: flex;
    flex-direction: column;
  }


  .form-container {
    padding: 1em 1em 0.5em 1em;
    width: 100%;
    height: auto;
    margin: 0;
  }

  .policy {
    font-size: 14px;
    line-height: 1.5;

  }


  .header h2 {
    font-size: 1.8rem;
  }

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

  .btn-group a {
    font-size: 12px !important;

  }

  .logo{
    display: none;
  }

  .header p {
    font-size: 14px;
  }

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

  .input-container input {
    padding: 10px 12px;
    font-size: 14px;
  }

  button.loginBtn {
    width: 100%;
    padding: 10px;
    font-size: 12px;
    margin-bottom: 10px;
  }

  .otp-container {
    gap: 8px;
    justify-content: center;
  }

  .otp-input {
    width: 60px !important;
    height: 60px;
    font-size: 20px;
  }


  .verify-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
  }

  .footer {
    width: 100%;
    /* padding: 0 30px; */
    /* text-align: center; */
    height: auto;
  }

  .footer p {
    /* padding-left: 10%; */
    font-size: 12px;
    text-align: center;
  }

  .subscribe-link {
    font-size: 14px;
    width: 100%;
    text-align: center;
  }

  .stat-header{
    align-items: center;
  }

  .stat-card{
    display: flex;
    gap: 0.7rem;
  }

  .link-container {
    width: 100%;
    order: 2;
  }

  .submit-button {
    width: 100%;
    text-align: center;
    order: 1;
  }

  .logo svg {
    margin-bottom: 0;
    width: 50px;
    height: 50px;
  }

  p {
    font-size: 14px;
  }

  .logo {
    position: static;
    margin-bottom: 0;
  }

}