.agreement-input {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.agreement-input:hover {
  cursor: pointer;
}

.agreement-input:hover .agreement-checkbox {
  background: transparent;
}


.agreement-checkbox {
  width: 20px;
  height: 20px;
  border: 1px solid #E6E9F2;
  background: #fff;
  border-radius: 6px;
  text-align: center
}

.agreement-checkbox.active--dot {
  border: 1px solid var(--brand-blue);
  background: var(--brand-blue);
}

.agreement-input:hover .agreement-checkbox.active--dot {
  background: var(--brand-blue-hover);
}

.agreement-checkbox.active--dot::before {
  content: "\2713";
  color: white;
}

.agreement-checkbox.required {
  border: 1px solid var(--brand-red);
}

.form-sub{
  display: flex;
  align-items: center; 
  gap: 1rem;
}

.agreement-text{
  width: 480px; 
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  white-space: nowrap;
}



@media (max-width: 530px) {
  .form-sub{
    flex-direction: column;
  }

  .form-button{
    width: 100%;
  }

  .agreement-input{
    align-items: start;
    justify-content: start;
  }

  .agreement-text{
    width: 88%;
    white-space: normal;
    text-align: left;
    margin-top: -5px;
  }
}