@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  width: 100%;
  height: 100%;
  background-color: #a35c7a;
}
.box {
  border-radius: 5px;
  text-align: center;
  width: 40%;
  background-color: #f9f9f9;
  margin: 50px auto;
  padding: 40px;
  color: #212121;
}
.box h1 {
  padding: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.label {
  padding: 30px 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.name {
  padding-top: 20px;
  padding-bottom: 15px;
  font-size: 1.3em;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}
#form {
  width: 100%;
  height: 35px;
  font: 1em sans-serif;
  padding-left: 10px;
}
#role {
  width: 100%;
  height: 35px;
  font: 1em sans-serif;
  padding-left: 10px;
}
.recommend-options {
  display: flex;
  flex-direction: column;
}
.recommend-options label {
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 10px;
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.5px;
}
.recommend-options input[type="radio"] {
  transform: scale(1.5); /* Scales the radio button size by 1.5 times */
  margin-right: 8px; /* Adds space between the button and the label text */
  cursor: pointer;
  appearance: none;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  border: 2px solid black;
  outline: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.recommend-options input[type="radio"]:checked {
  background-color: #000000; 
  border-color: #969696; /
}
.like label {
    display: flex;
  align-items: center;
  padding: 10px;
  gap: 10px;
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.5px;
  }
  .like input[type="checkbox"] {
    appearance: none; /* Removes default checkbox styles */
    transform: scale(1.5);
    margin-right: 8px;
    cursor: pointer;
    height: 15px;
    width: 15px;
    border: 2px solid black;
    border-radius: 20%;
    background-color: white;
    transition: background-color 0.3s ease, border-color 0.3s ease;
  }
  
  .like input[type="checkbox"]:checked {
    background-color: black; /* Checkbox fills with black when checked */
    border-color: #969696;
  }
  
  .like input[type="checkbox"]:checked::before {
    content: "✓"; /* Adds the tick mark */
    color: white; /* Tick mark color */
    font-size: 14px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .remark {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  padding: 10px;
  gap: 10px;
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.5px;
  }
  .remark textarea {
    
        width: 500px; 
        height: 150px; 
        padding: 10px; 
        border: 2px solid #ccc; 
        border-radius: 5px; 
        
      }

.button-container {
    display: flex;
    justify-content: center; 
    margin-top: 20px; 
}
 .submit {
    font-family: "Poppins", serif;
    font-weight: 500;
    font-size: larger;
    width: 515px; 
    height: 50px; 
    background-color: #000000;
    color: white; 
    border: none; 
    border-radius: 8px; 
    cursor: pointer; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease; 
}
img{
    mix-blend-mode: multiply;
}
@media (max-width: 768px) {
    .box {
      width: 80%;
      padding: 20px;
    }
  
    .submit {
      height: 45px;
      width: fit-content;
    }
    textarea {
        height: 20px;
        width: 70px;
      }
  }
  
  @media (max-width: 481px) {
    .box {
      width: 90%;
      padding: 15px;
    }
  
    .submit {
      font-size: 1rem;
      height: 40px;
      width: fit-content;
    }
  
    textarea {
      height: 20px;
      width: 280px;
    }
  }


