@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,700;1,400&display=swap");

body {
  font-family: "Barlow", sans-serif;
  box-sizing: border-box;
}

.container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  min-width: 250px;
  max-width: 400px;
}

#form {
  display: flex;
  flex-direction: column;
  padding: 1.1em;
  background-color: #f0f0f0;
}

.form-title {
  font-weight: bold;
  text-align: center;
  font-size: 25px;
  line-height:28px;
}

.form-p {
  font-weight: bold;
  text-align: center;
  font-size: 14px;
  margin-top: 30px;
}

.form-price {
  font-size: 20px;
  text-align: center;
}

.del-price {
  color: red;
  text-decoration: line-through;
  margin: 0 10px 0 10px;
}

.del-price-text {
  color: black;
}

.price {
  color: green;
  font-weight: bold;
  font-size: 30px;
}

#name {
  padding-top: 6px;
  padding-bottom: 6px;
  border: 1px solid white;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 15px;
  font-weight: bold;
}

#phone {
  padding-top: 6px;
  padding-bottom: 6px;
  border: 1px solid white;
  border-radius: 4px;
  padding: 20px 0 20px 50px;
  width: 100%;
  font-weight: bold;
}

#phone-error {
  color: red;
  display: none;
  font-size: 13px;
}

#name:focus,
#phone:focus {
  box-shadow: 0 0 5px #8df61e;
  outline: none;
}

.btn {
  color: black;
  background-color: #c7ea46;
  border: 3px solid black;
  font-size: 20px;
  font-weight: bold;
  outline: none;
  cursor: pointer;
  border-radius: 30px;
  padding: 20px;
  box-shadow: 5px 5px 10px gray;
}

.btn:focus,
.btn:hover {
  background-color: rgba(199, 234, 70, 0.7);
}

.btn:disabled,
.btn[disabled] {
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
}
