@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Host Grotesk", sans-serif;
}
body{
  background-color: rgba(27, 26, 26, 0.094); 
   user-select: none;
}
.coantianer{
  max-width: 950px;
  margin: 2rem auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  overflow: hidden;
}
.coantianer .imgge{
  order: 2;
  background-color: green;
  width: auto;
}
.imgge img{
  display: flex;
  align-items: center;
  justify-content: center;
}

/* form css code */
.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #ffffff;
  padding: 30px;
  width: 450px;
  border-radius: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

::placeholder {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.form button {
  align-self: flex-end;
}

.flex-column > label {
  color: #151717;
  font-weight: 600;
}

.inputForm {
  border: 1.5px solid #ecedec;
  border-radius: 10px;
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  transition: 0.2s ease-in-out;
}

.input {
  margin-left: 10px;
  border-radius: 10px;
  border: none;
  width: 85%;
  height: 100%;
}

.input:focus {
  outline: none;
}

.inputForm:focus-within {
  border: 1.5px solid rgb(134, 244, 134);
}

.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.flex-row > div > label {
  font-size: 14px;
  color: black;
  font-weight: 400;
}

.span {
  font-size: 14px;
  margin-left: 5px;
  color: #2d79f3;
  font-weight: 500;
  cursor: pointer;
}

.button-submit {
  margin: 20px 0 10px 0;
  background-color: rgba(0, 128, 0, 0.82);
  border: none;
  color: white;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  height: 50px;
  width: 100%;
  cursor: pointer;
}

.button-submit:hover {
  background-color:rgba(0, 128, 0, 0.701);
}

.p {
  text-align: center;
  color: black;
  font-size: 14px;
  margin: 5px 0;
}

.btn {
  margin-top: 10px;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  gap: 10px;
  border: 1px solid #ededef;
  background-color: white;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.btn:hover {
  border: 1px solid #2d79f3;
}


/* Responsive Styles */

/* Mobile Styles */
@media (max-width: 768px) {
  .coantianer {
    flex-direction: column; /* Stack elements vertically */
    padding: 20px; /* Reduce padding for smaller screens */
  }
  .imgge{
    display: none;
  }

  .form {
    padding: 20px; /* Adjust form padding */
    width: 100%; /* Make form full width */
  }

  .inputForm {
    height: 40px; /* Reduce input height */
  }

  .button-submit {
    height: 45px; /* Adjust button height */
  }

  .flex-column {
    width: 100%; /* Make flex-column full width */
  }

  .flex-column > label {
    font-size: 16px; /* Adjust label font size */
  }

  .input {
    width: 100%; /* Make input full width */
  }

  .span {
    font-size: 14px; /* Adjust span font size */
  }

  .p {
    font-size: 12px; /* Adjust paragraph font size */
  }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .coantianer {
    flex-direction: column; /* Stack elements vertically */
    padding: 25px; /* Adjust padding for tablets */
  }
  .imgge{
    display: none;
  }

  .form {
    padding: 25px; /* Adjust form padding */
    width: 100%; /* Make form full width */
  }

  .inputForm {
    height: 45px; /* Adjust input height */
  }

  .button-submit {
    height: 50px; /* Maintain button height */
  }

  .flex-column {
    width: 100%; /* Make flex-column full width */
  }

  .flex-column > label {
    font-size: 16px; /* Adjust label font size */
  }

  .input {
    width: 100%; /* Make input full width */
  }

  .span {
    font-size: 14px; /* Adjust span font size */
  }

  .p {
    font-size: 14px; /* Adjust paragraph font size */
  }
}