/* Submit Button */
.submit-btn {
  width: 100%;
  height: var(--btn-height-mobile);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  border-radius: var(--border-radius);
  border: 1px solid #df0611;
  background-color: #ffffff;
  color: #df0611;
  cursor: pointer;
}

.submit-btn.active {
  background-color: #DF0611;
  color: #ffffff;
}

.submit-btn.active:hover {
  background-color: #E71F3D;
  color: #ffffff;
}

.submit-btn.active svg path,
.submit-btn.active:hover svg path {
  stroke: #FFFFFF;
}

.submit-btn span {
  font-family: Ubuntu;
  font-size: var(--font-size-mobile);
  font-weight: 400;
  line-height: var(--line-height-mobile);
  text-align: left;
  color: inherit;
}

.submit-btn.disabled {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}

@media (min-width: 1280px) {
  .submit-btn {
    max-width: 250px;
  }

  .submit-btn.submit-btn span {
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.8px;
    text-align: left;
  }
}
