#widerrufModalButton{
  background: transparent;
  transition: all ease-in-out .2s;
  border: 2px solid var(--color-light);
  font-size: 16px;
  color: var(--color-light);
  margin-top: 8px;
  &:hover{
    color: var(--color-golden);
    border-color: var(--color-golden);
  }
}

#widerrufModal{
  border: none;
  width: 500px;
  max-width: calc(100% - 30px);
  margin: auto;
  padding: 2.5rem 1rem 1rem;
  h2{
    margin: 0 0 .5rem;
    font-size: 1.5rem;
    font-family: sans-serif;
    font-weight: bold;
    line-height: 1;
  }
  p{
    margin: 0 0 .5rem;
    color: #000;
  }
  & > button{
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: none;
    background: transparent;
    line-height: 1;
    font-size: 1.2rem;
    width: 1.2rem;
    height: 1.2rem;
    padding: 0;
    &:hover{
      color: #d34040;
    }
  }
  form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: sans-serif;
    label{
      font-weight: bold;
      margin-bottom: .25rem;
      span{
        font-weight: normal;
        color: #666;
        font-size: .666rem;
      }
    }
    input, textarea{
      width: 100%;
      padding: .5rem;
      border: 1px solid #ccc;
      border-radius: 4px;
    }
    textarea{
      resize: vertical;
    }
    .submit-button{
      text-align: right;
    }
    button[type="submit"]{
      background: #666;
      color: #FFF;
      border: none;
      padding: .75rem 1rem;
      border-radius: 4px;
      font-weight: bold;
      line-height: 1;
      transition: all ease-in-out .2s;
      &:hover{
        background: #222;
      }
      &:disabled{
        opacity: .5;
        pointer-events: none;
      }
    }
  }
  #revoMessage{
    margin-bottom: 1rem;
    padding: .5rem;
    border-radius: 4px;
    &.hidden{
      display: none;
    }
    &.success{
      color: #155724;
      background-color: #d4edda;
      border: 1px solid #c3e6cb;
    }
    &.error{
      color: #721c24;
      background-color: #f8d7da;
      border: 1px solid #f5c6cb;
    }
  }
}