* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Public Sans', sans-serif;
  height: 100%;
  background-color: #ffffff;
}

.container {
  display: flex;
  height: 100vh;
  width: 100%;
}


.left {
  width: 50%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: white;
}

.form-box {
  max-width: 320px;
}

.form-box h1 {
  font-size: 32px;
  color: #f4a261;
  margin-bottom: 30px;
  padding-left: 10px;
}

.input-group {
  display: flex;
  align-items: center;
  background: #dcdcdc;
  padding: 10px 16px;
  border-radius: 25px;
  margin-bottom: 20px;
}

.input-group .icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.input-group input {
  border: none;
  background: transparent;
  font-size: 16px;
  flex: 1;
  outline: none;
}

button {
  background-color: #f4a261;
  color: white;
  padding: 12px 35px;
  font-size: 16px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s ease;
}


button:hover {
  background-color: #e38b3b;
}

.logo {
  position: absolute;
  bottom: 30px;
  left: 60px;
}

.logo img {
  width: 180px;
}


.right {
  width: 50%;
  background: url('images/bg-right.jpg') no-repeat;
  background-position: 90% center; 
  background-size: cover;
}


/* Responsive for smaller screens */
/* Tablet and smaller */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left, .right {
    width: 100%;
    padding: 40px 20px;
  }

  .form-box {
    max-width: 100%;
  }

  .logo {
    position: static;
    text-align: center;
    margin-top: 30px;
  }

  .logo img {
    width: 140px;
  }

  .form-box h1 {
    font-size: 28px;
    text-align: center;
  }

  button {
    width: 100%;
    padding: 12px 0;
  }
}

/* Phone adjustments */
@media (max-width: 480px) {
  .input-group {
    flex-direction: row;
    padding: 8px 12px;
  }

  .input-group .icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
  }

  .input-group input {
    font-size: 14px;
  }

  .form-box h1 {
    font-size: 24px;
  }

  button {
    font-size: 14px;
    padding: 10px 0;
  }

  @media (max-width: 480px) {
  .right {
    display: none;
  }
}

}


