* {
  font-family: "Inter", sans-serif;
  color: #003366;
}

body {
  background-color: #fff;
  padding: 64px;
  justify-content: center;
}

form {
  display: flex;
  flex-direction: column;
}
.form-container {
  max-width: 648px;
  margin: 0 auto;
}
.form-group {
  padding-bottom: 16px;
}

.disabled-label {
  color: #83A0BD;
}

.form-group label, span {
  font-weight: 400;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#totalValue, #unitLabel {
  margin-bottom: 0;
}

#project-sum {
  font-weight: 600;
  font-size: 1.25rem;
  padding-top: 40px;

}

input[type="text"],
input[type="date"] {
  width: 100%;
  height: 32px;
  border: 1px solid #aac1db;
  border-radius: 4px;
  color: #003366;
  box-sizing: border-box;
  padding-left: 16px;
}
input[type="text"]::placeholder,
input[type="date"]::placeholder {
  color: #83A0BD;  
}
input[type="text"]:focus,
input[type="date"]:focus {
  outline: none;
  border-color: #83A0BD;
  box-shadow: none;
}


select {
  width: 100%;
  height: 32px;
  border: 1px solid #aac1db;
  border-radius: 4px;
  color: #83A0BD;
  padding-left: 16px;
  box-sizing: border-box;
}
select:focus {
  outline: none;
  border-color: #83A0BD;
  box-shadow: none;
}
option {
  color: #003366;
  background-color: #F3F6F9;
}


input[type=checkbox],
input[type=radio] {
  accent-color: #003366;
  width: 18px;
  height: 18px;
}
.checkbox-group {
  padding-left: 32px;
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}



.table-section table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; 
}
.table-section td:nth-child(2),
.table-section th:nth-child(2) {
  background-color: #F3F6F9;
}
.table-section th {
  height: 29px;
  border: 1px solid #aac1db;  
  font-weight: normal;
  text-align: center;
  font-size: 14px;
}
.table-section td {
  border: 1px solid #aac1db;  
  text-align: left;
  font-size: 14px;  
  padding-left: 16px;
}
.table-section input {
  width: 90%;
  border: 1px solid #F3F6F9;
  height: 30px;
  box-sizing: border-box;
  background-color: #F3F6F9;
}
.table-section input:focus {
  outline: none;
  border: 1px solid #F3F6F9;
  box-shadow: none;
  background-color: #F3F6F9;
}


button {
  margin-top: 24px;
  
  height: 48px;
  width: 100%;
  background-color: #003366;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}
button:hover {
  background-color: #002c57;
}



/* Ползунок коэфициента аукциона */
.slider-container {
  margin: 0 0 16px 60px;
  width: 100%;
}

/* Стили ползунка */
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: #d0d8e0;
  border-radius: 2px;
  outline: none;
}

/* Линия (WebKit) */
input[type=range]::-webkit-slider-runnable-track {
  height: 4px;
  background: linear-gradient(to right, #0a3d78 var(--percent), #d0d8e0 var(--percent));
  border-radius: 2px;
}

/* Кружок */
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  background: #0a3d78;
  border-radius: 50%;
  margin-top: -5px;
  cursor: pointer;
}

/* Цифры */
.ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 14px;
  color: #0a3d78;
}


 #take-1, #take-2 {
  padding-top: 32px;
  padding-bottom: 32px;
 }