@import "reset.css";
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body {
  margin: 0;
  padding: 0;
  font-optical-sizing: auto;
  font-style: normal;
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
}

a {
 all: unset;
 cursor: pointer;
}

* {
  margin: 0;
  padding: 0;
}

.page {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding-top: 50px;
  width: 90%;
  padding-bottom: 70px;
}

form {
  width: 100%;
}

h1 {
  font-family: "Abril Fatface", serif;
  font-weight: 600;
  font-size: 2.4em;
  text-align: center;
  line-height: 1.4em;
}

h2 {
  font-weight: 600;
  font-size: 1.5em;
  text-align: center;
  line-height: 1.4em;
}

.order-row label {
  width: 70%;
  padding-top: 20px;
  padding-right: 10%;
  line-height: 1.4em;
}

.order-row p {
  padding-top: 18px;
  padding-right: 18px;
  min-width: 100px;
}

.info label {
  padding-top: 20px;
  text-align: left;
  width: 100%;
}

.order-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  padding-top: 10px;
  border-bottom: 1px dotted #000;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  align-items: flex-start;
}

.info {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding-top: 50px;
}

.info-page a {
  background-color: #cd0000;
  color: #fff;
  padding: 20px 50px;
  border-radius: 50px;
  font-weight: 600;
}

input {
  width: 100%;
  padding: 15px 30px;
  font-size: 0.9em;
  border-radius: 50px;
  border: none;
  background-color: #e8e8e8;
  font-weight: 600;
  font-family: "Noto Sans", sans-serif;
  box-sizing: border-box;
}

.order-row input {
  background-color: #fff;
  border: 1px solid #000;
  width: 100px;
  padding: 15px 20px;
}

.info button {
  margin-top: 20px;
  background-color: #cd0000;
  color: white;
  font-weight: 600;
  border: 0;
  padding: 20px 50px;
  border-radius: 50px;
  font-family: "Noto Sans", sans-serif;
}

.red {
  color: #cd0000;
}

.pocty {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  align-items: center;
}


@media only screen and (max-width: 1200px) {

  h1 {
  font-family: "Abril Fatface", serif;
  font-weight: 700;
  font-size: 1.5em;
  text-align: center;
  line-height: 1.2em;
}

h2 {
  font-weight: 500;
  font-size: 1.1em;
  text-align: center;
  line-height: 1.4em;
}

}



@media only screen and (max-width: 500px) {

.order-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-row label {
  width: 100%;
  padding-top: 20px;
  padding-right: 10%;
  line-height: 1.4em;
}

}