.centered-field-container{
  display: flex;
  justify-content: center;
}

.big-input-field{
  font-size: 1.5rem;
  /* border: none; */
  color: #797979;
  border: 1px solid #797979;
  /* background-color: #797979; */
  padding: .8rem 0rem;
  width: 100%;
  text-align: center;
}

@media only screen and (min-width: 1200px){
  .big-input-field{
    width: 600px;
  }
}

.big-button{
  font-size: 1.5rem;
  padding: .8rem 2.4rem;
  text-align: center;
  margin-top: .4rem;
  margin-bottom: 2rem;
  width: 600px;
}

.primary-shaded{
  background-color: var(--primary-color);
  color: #efefef;
  border: #797979;
  &:hover{
    background-color: #c21057e2;
    cursor: pointer;
  }
}

.qube-button{
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: .5rem;
  color: white;
  font-size: 1rem;
  padding: .5rem 1rem;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .6);
  /* &:hover{
   background-color: scale-color($primary-color, $lightness: 10%); 
  }  */
}

.inline-button{
  display: inline;
  color: var(--primary-color);
  background: linear-gradient(to right, var(--primary-color), var(--primary-color)) no-repeat right;
  background-size: 0% auto;

  transition: background-size 0.3s, background-position 0s;

  &:hover {
    background-size: 100% auto;
    background-position: left;
    color: #efefef;
  }
  /* &:hover{
    background-color: #797979;
  } */
}

.inline-button-padding{
  padding: .2rem .4rem;
}

.text-field{
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  width: 100%;
  padding: .5rem;
  margin-bottom: 1rem;
  outline: none;
  border: 1px solid #a4a4a4; 
}

.title-field{
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  width: 100%;
  padding: .5rem;
  margin-bottom: 1rem;
  border: none;
  outline: none;
  border-bottom: 1px solid #a4a4a4;
}

.textarea-field{
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  width: 100%;
  padding: .2rem;
  margin-bottom: 1rem;
  border: 1px solid #a4a4a4; 
}

.large-textarea-field-with-border{
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  width: 100%;
  min-height: 400px;
  padding: .5rem;
  margin-bottom: 1rem;
  border: 1px solid #a4a4a4; 
  outline: none;
}


.large-textarea-field{
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  width: 100%;
  min-height: 400px;
  padding: .5rem;
  margin-bottom: 1rem;
  border: none;
  outline: none;
}

.small-textarea-field-with-border{
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  width: 100%;
  min-height: 200px;
  padding: .5rem;
  margin-bottom: 1rem;
  border: 1px solid #a4a4a4; 
  outline: none;
}

.small-textarea-field{
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  width: 100%;
  min-height: 200px;
  padding: .5rem;
  margin-bottom: 1rem;
  border: none;
  outline: none;
}

.writing-area{
  width: 100%;
  background-color: #ffffff;
  padding: 1rem .5rem .5rem .5rem;
}

.status-bar{
  padding: .2rem .4rem;
  background-color: #cfcfcf;
}

.create-button{
  background-color: #f2f2f2;
  padding: .2rem 1rem;
  border-radius: .1rem;
  border: 1px solid #d0d0d0;
  font-family: Roboto;
  font-size: 1rem;
  color: var(--grey-2);
  &:hover{
    background-color: #e4e4e4;
  }

}