/* Подключение всех доступных шрифтов */

@font-face {
  font-family: '1Regular';
  src: url('./fonts/1Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: '1Bold';
  src: url('./fonts/1Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: '2Regular';
  src: url('./fonts/2Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: '2Bold';
  src: url('./fonts/2Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: '2Italic';
  src: url('./fonts/2Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: '2BoldItalic';
  src: url('./fonts/2BoldItalic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: '3Regular';
  src: url('./fonts/3Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Основные стили */

body {
  background-color: #E1DDD5;
  color: #333333;
  font-family: '2Regular';
  margin: 0;
  padding: 0;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: clamp(72px, 10vw, 85px);
  padding-left: 3vw;
  padding-right: 3vw;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(72px, 10vw, 85px);
  background-color: #E1DDD5;
  z-index: 10;
  box-sizing: border-box;
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 3vw;
  right: 3vw;
  height: 1.5px;
  background-color: #333333;
}

.logo {
  position: absolute;
  left: 3vw;
  top: 50%;
  transform: translateY(-50%);
  height: 2.2rem;
  object-fit: contain;
  z-index: 1;
}

#faqBtn {
  position: absolute;
  top: 50%;
  right: calc(3vw + 75px);
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #2E2522FF;
  font-size: 1rem;
  cursor: pointer;
  padding: 0 3px;
  z-index: 2;
  font-family: '1Bold';
}

#loginBtn {
  position: absolute;
  top: 50%;
  right: 3vw;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #2E2522FF;
  font-size: 1rem;
  cursor: pointer;
  padding: 0 3px;
  z-index: 2;
  font-family: '1Bold';
}

.input-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}