.checkbox-container {
  display: flex;
  gap: 1rem;
  /* Adjust the spacing between items */
}

.custom-checkbox {
  display: flex;
  align-items: center;
  color: #6c757d;
  /* Light gray text color */
  font-size: 1rem;
}

.custom-checkbox input[type="checkbox"] {
  width: 39px;
  height: 39px;
  margin-right: 0.5rem;
  accent-color: #1759a3;
  /* Matches the light gray color */
  cursor: pointer;
}

/* .custom-checkbox input[type="checkbox"]:hover {
    accent-color: #edae0c;

} */

.custom-checkbox span {
  margin-top: -22px;
  color: var(--Greyscale-400, #94a3b8);
  font-family: Inter;
  font-size: 19.858px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

.errorResponse {
  border: 1px solid;
  margin: 10px 0px;
  padding: 15px 10px 15px 50px;
  background-repeat: no-repeat;
  background-position: 10px center;
  color: #d8000c;
  background-color: #ffbaba;
  background-image: url("https://i.imgur.com/GnyDvKN.png");
  border-radius: 6px;
  display: none;
}

.successResponse {
  border: 1px solid;
  margin: 10px 0px;
  padding: 15px 10px 15px 50px;
  background-repeat: no-repeat;
  background-position: 10px center;
  color: #4f8a10;
  background-color: #dff2bf;
  background-image: url("https://i.imgur.com/Q9BGTuy.png");
  border-radius: 6px;
  display: none;
}

/* Media Query Start Here */
/* Media Query 320 */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .image-container {
    display: none !important;
  }
  .form-container {
    background: url(../images/login-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
  }
  .main-form {
    width: 95% !important;
  }
  .main-form h1 {
    color: #fff !important;
  }
  .main-form input {
    font-size: 14px !important;
    padding: 12px 14px 12px 44px !important;
  }
  .fa-user {
    top: 16px !important;
    left: 12px !important;
  }
  .fa-envelope {
    top: 16px !important;
    left: 12px !important;
  }
  .fa-lock {
    top: 16px !important;
    left: 12px !important;
  }
  .fa-lock {
    top: 16px !important;
    left: 12px !important;
  }
  .fa-eye {
    top: 16px !important;
    right: 12px !important;
  }
  .main-form input::placeholder {
    font-size: 14px !important;
    font-style: normal;
    font-weight: 400;
  }
  .checkbox-container {
    justify-content: center;
  }
  .custom-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
  }
  .custom-checkbox span {
    font-size: 15px;
    color: #fff;
  }
  .main-form button.login-button {
    font-size: 14px !important;
    padding: 12px 0px !important;
    font-weight: 500 !important;
  }
  .main-form p {
    font-size: 14px !important;
    color: #fff !important;
  }
  .custom-link-auth span a {
    color: #fff !important;
  }
}

/* Media Query 768 */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .image-container {
    display: none !important;
  }
  .form-container {
    background: url(../images/login-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
  }
  .main-form {
    width: 95% !important;
  }
  .main-form h1 {
    color: #fff !important;
  }
  .main-form input {
    font-size: 14px !important;
    padding: 12px 14px 12px 44px !important;
  }
  .fa-user {
    top: 16px !important;
    left: 12px !important;
  }
  .fa-envelope {
    top: 16px !important;
    left: 12px !important;
  }
  .fa-lock {
    top: 16px !important;
    left: 12px !important;
  }
  .fa-lock {
    top: 16px !important;
    left: 12px !important;
  }
  .fa-eye {
    top: 16px !important;
    right: 12px !important;
  }
  .main-form input::placeholder {
    font-size: 14px !important;
    font-style: normal;
    font-weight: 400;
  }
  .checkbox-container {
    justify-content: center;
  }
  .custom-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
  }
  .custom-checkbox span {
    font-size: 15px;
    color: #fff;
  }
  .main-form button.login-button {
    font-size: 14px !important;
    padding: 12px 0px !important;
    font-weight: 500 !important;
  }
  .main-form p {
    font-size: 14px !important;
    color: #fff !important;
  }
  .custom-link-auth span a {
    color: #fff !important;
  }
}

/* Media Query 1024 */
@media only screen and (min-width: 1024px) and (max-width: 1300px) {
  html,
  body {
    overflow-x: hidden !important;
  }
  .w-100.d-flex.registrationflex {
    gap: 30px;
  }
  .image-container {
    width: 50% !important;
    height: auto !important;
  }
  .form-container {
    width: 45% !important;
    height: auto !important;
  }
  .main-form {
    width: 90% !important;
  }
  .image-container h1,
  .image-container h1 span {
    font-size: 55px !important;
  }
  .image-container img {
    margin-top: 30px;
    width: 100%;
  }
  .image-container p {
    font-size: 20px !important;
  }
  .main-form h1 {
    font-size: 30px !important;
  }
  .main-form input {
    font-size: 15px !important;
    padding: 14px 14px 14px 44px !important;
  }
  .fa-user {
    top: 20px !important;
    left: 17x !important;
  }
  .fa-envelope {
    top: 20px !important;
    left: 17x !important;
  }
  .fa-lock {
    top: 20px !important;
    left: 17x !important;
  }
  .fa-lock {
    top: 20px !important;
    left: 17x !important;
  }
  .fa-eye {
    top: 20px !important;
    right: 17px !important;
  }
  .main-form input::placeholder {
    font-size: 15px !important;
    font-style: normal;
    font-weight: 400;
  }
  .custom-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
  }
  .custom-checkbox span {
    font-size: 15px;
  }
  .main-form button.login-button {
    font-size: 15px !important;
    padding: 15px 0px !important;
  }
  .main-form p {
    font-size: 15px !important;
  }
}

/* Media Query 1301 */
@media only screen and (min-width: 1301px) and (max-width: 1600px) {
  html,
  body {
    overflow-x: hidden !important;
  }
  .w-100.d-flex.registrationflex {
    gap: 30px;
  }
  .image-container {
    width: 50% !important;
    height: auto !important;
  }
  .form-container {
    width: 45% !important;
    height: auto !important;
  }
  .main-form {
    width: 90% !important;
  }
  .image-container h1,
  .image-container h1 span {
    font-size: 55px !important;
  }
  .image-container img {
    margin-top: 30px;
    width: 100%;
  }
  .image-container p {
    font-size: 20px !important;
  }
  .main-form h1 {
    font-size: 30px !important;
  }
  .main-form input {
    font-size: 15px !important;
    padding: 14px 14px 14px 44px !important;
  }
  .fa-user {
    top: 20px !important;
    left: 17x !important;
  }
  .fa-envelope {
    top: 20px !important;
    left: 17x !important;
  }
  .fa-lock {
    top: 20px !important;
    left: 17x !important;
  }
  .fa-lock {
    top: 20px !important;
    left: 17x !important;
  }
  .fa-eye {
    top: 20px !important;
    right: 17px !important;
  }
  .main-form input::placeholder {
    font-size: 15px !important;
    font-style: normal;
    font-weight: 400;
  }
  .custom-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
  }
  .custom-checkbox span {
    font-size: 15px;
  }
  .main-form button.login-button {
    font-size: 15px !important;
    padding: 15px 0px !important;
  }
  .main-form p {
    font-size: 15px !important;
  }
}