.container {
  padding: 16px; 
  border-radius: 12px; 

  display: flex;
  flex-direction: column; 
  justify-content: center; 
  align-items: flex-start; 
  gap: 16px; 

  background-color: #F5F5F5; 
}

h1 {
  margin: 0;

  font-size: 32px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0.64px;
}

h2 {
  margin: 0;

  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.48px;
}

p {
  margin: 0;

  font-size: 14px;
  font-weight: 400;
  line-height: 18px;

  color: #3A3A3A;
}

a {
  text-decoration: underline dashed;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;

  color: inherit;
}

a:hover {
  text-decoration: underline;
}

.infoContent {
  display: flex;
  flex-direction: column; 
  align-items: flex-start; 
  gap: 12px; 
}

.formContainer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}


.colorLineGroup {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.colorLine {
  width: 100%;
  padding: 2px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.groupLine {
  justify-content: flex-start;
}

.colorLine.twoLines {
  align-items: flex-end;
}

.colorLineName,
.colorLineValue {
  display: flex;
  gap: 8px;
}

.colorLineName {
  min-height: 23px;
  align-items: flex-start;
}

.colorLineValue {
  align-items: center;
}

input[type="text"],
select {
  width: 78px;
  height: 22px;
  padding: 0 4px;
  border: none;
  border-bottom: 1px solid #DEDEDE;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  border-radius: 0;

  color: black;
  background-color: transparent;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none; 
  appearance: none;
}

.selectLabel {
  position: relative;
  height: 20px;
}

.selectLabel::after {
  content: '';
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  width: 20px;
  height: 20px;
  background-color: #3A3A3A;
  -webkit-mask-image: url("src/img/ShevronDownSmall.svg");
  mask-image: url("src/img/ShevronDownSmall.svg");
  pointer-events: none;
}

select:disabled+.selectLabel::after {
  display: none;
}

#mix_color {
  width: 96px;
}

input[type="text"]:hover,
select:hover {
  border-bottom-color: #3A3A3A;
}

input[type="text"]:disabled,
select:disabled {
  border-color: transparent;

  color: #939393;
}

.hexColorInput {
  width: 70px;
}

input[type="checkbox"], input[type="radio"] {
  width: 17px;
  height: 17px;
  margin: 0;
  margin-top: 0.5px;
  padding: 2px; 
  flex-shrink: 0;

  border: 0.75px #726F6E solid;
  border-radius: 4px; 

  background: white; 
}

input[type="color"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 30px;
  height: 22px;
  padding: 2px;

  border: 1px solid #DEDEDE;
  border-radius: 4px;
  cursor: pointer;

  background-color: transparent;
}

input[type="color"]:hover {
  border-color: #3A3A3A;
}

input[type="color"]:disabled {
  border: none;
  opacity: 0.4;
  cursor: default;
}

input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
}

input[type="color"]::-webkit-color-swatch {
  border: none;
  border-radius: 2px
}

input[type="color"]::-moz-color-swatch {
  border: none;
  border-radius: 2px;
}

.submitButton {
  padding: 8px 12px;
  border: none;
  border-radius: 12px;

  font-size: 16px;
  font-weight: 500;
  line-height: 20px;

  color: white;
  background-color: #FF6633;
}

.submitButton:hover {
  background-color: #FF5522;
  cursor: pointer;
}

.submitButton:disabled {
  background-color: #FF9E7E;
  cursor: default;
}

.copyright {
  font-size: 10px;
  text-align: center;

  color: #726F6E
}