
body {
  background: #f7f7f7;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x:hidden;
}

.wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.container-custom {
  width: 70%;
  max-width: 1200px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.sign-up-form{
max-width: 400px;
width: 100%;
}
.form-section {
  flex: 1;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form-section h2 {
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 10px;
}

.form-section p {
  color: #6c757d;
  margin-bottom: 30px;
}

.form-input {
  width: 100%;
  outline: none;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
}
.form-input:focus {
 border-color: #69473B!important; 
  
}
.form-check-label {
  font-size: 14px;
  color: #6c757d;
}
.toggle-password {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #888;
}

.toggle-password img {
  width: 20px;
  opacity: 0.7;
}

.sign-in {
  width: 100%;
  border-radius: 8px;
  padding: 10px;
  font-weight: 600;
  color: #fff;
  background-color: #69473B!important;
  border: none;
  margin-bottom: 15px;
}

.sign-in:hover {
  background-color: #DFC5A4!important;
  
  color: #502718;
}
.forgot-password{
  margin-top: -20px!important;
 text-align: right;
  font-size: 14px; 
  text-decoration: none;
   color: #4b3f35;
}
.text-end {
  text-align: right !important;
  width: 100%;
}

.forgot-password:hover{
  color: #ff960c;
}
.btn-google {
  width: 100%;
  border-radius: 8px;
  padding: 10px;
  background: #fff;
  border: 1px solid #ccc;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.btn-google img {
  width: 20px;
}

.signup-link {
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}

.signup-link a {
  color: #111;
  font-weight: 600;
  text-decoration: none;
}
.signup-link a:hover{
  color: #ff960c;
}
.vot{
border: none;
outline: none;
}
.image-section {
  flex: 1;
  position: relative;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: rgb(128 128 128 / 20%);
backdrop-filter: blur(12px);
  padding: 20px;
  border-radius: 12px;
  color: #fff;
}

.testimonial-card p {
  font-size: 15px;
  margin-bottom: 15px;
  letter-spacing: 1.5px;
}

.testimonial-author {
  
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 5px;
}

.testimonial-role {
  font-style: italic;
  font-size: 12px;
  color: #fff;
  opacity: 0.8;
}

.stars {
  color: gold;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 991px) {
  .container-custom {
    flex-direction: column;
    width: 90%;
  }

  .form-section, .image-section {
    width: 100%;
  }

  .image-section {
    display: none;
  }
}

