@import '../../lib/commonStyles/colors.scss';
@import '../../lib/commonStyles/fonts.scss';

.container {
  position: relative;
  width: 100%;
}

.copyTextArea {
  position: fixed;
  top: -9999px;
}

.button {
  line-height: 35px;
  text-align: center;
  border-radius: 100px;
  border: solid 1px $primary-color-highlight;
  background-color: $snow;
  height: 35px;
  margin: 30px 0 25px 0;
  width: 100%;
  font-size: $secondary-font-size;
}

.primaryButton {
  @extend .button;
  background-color: $primary-color;
  color: $snow;
  &:hover {
    color: $snow;
  }
  &.disabled {
    background-color: $silver;
    border-color: $silver;
    &:hover {
      color: $snow;
    }
  }
}
