@font-face {
  font-family: "Barlow";
  src: url("/fonts/Barlow-Medium.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Barlow";
  src: url("/fonts/Barlow-SemiBold.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "Barlow";
  src: url("/fonts/Barlow-Bold.ttf") format("truetype");
  font-weight: 700;
}

:root {
  --request-blue: #3b33c7;
  --request-bg: #efefef;
  --request-text: #4a4a4a;
  --request-line: #d9d9d9;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  background: var(--request-bg);
  color: var(--request-text);
  display: flex;
  font-family: "Barlow", sans-serif;
  justify-content: center;
}

.request-app {
  background: var(--request-bg);
  display: flex;
  flex-direction: column;
  max-width: 700px;
  min-height: 100vh;
  width: 100%;
}

.request-header {
  align-items: center;
  background: var(--request-blue);
  display: flex;
  gap: 12px;
  min-height: 67px;
  padding: 0 14px;
}

.request-back {
  align-items: center;
  display: inline-flex;
  height: 24px;
  justify-content: center;
  text-decoration: none;
  width: 24px;
}

.request-back svg {
  height: 23px;
  width: 23px;
}

.request-back path {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.request-title {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.request-main {
  flex: 1 1 auto;
  padding: 14px 12px 88px;
}

.request-card {
  background: #fff;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.request-section {
  padding: 26px 34px 24px;
}

.request-copy {
  color: #5f5f5f;
  font-size: 15px;
  line-height: 1.18;
  margin-bottom: 26px;
}

.request-person {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 2px solid #a7a7a7;
  color: #3f3f3f;
  display: flex;
  font-family: inherit;
  font-size: 17px;
  font-weight: 500;
  justify-content: space-between;
  margin-bottom: 28px;
  padding: 0 0 4px;
  text-align: left;
  width: 100%;
}

.request-person svg {
  height: 20px;
  width: 20px;
}

.request-person path {
  fill: none;
  stroke: #4d4d4d;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.request-primary,
.request-secondary {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  height: 48px;
  justify-content: center;
  text-decoration: none;
  width: 100%;
}

.request-primary {
  background: var(--request-blue);
  color: #fff;
}

.request-secondary {
  border: 2px solid var(--request-blue);
  color: var(--request-blue);
}

.request-divider {
  background: var(--request-line);
  height: 1px;
}

@media (min-width: 701px) {
  .request-header {
    min-height: 80px;
    padding: 0 18px;
  }

  .request-title {
    font-size: 24px;
  }

  .request-main {
    flex: 1 1 auto;
    padding: 22px 16px 96px;
  }

  .request-section {
    padding: 30px 36px 28px;
  }

  .request-copy {
    font-size: 18px;
  }

  .request-person {
    font-size: 22px;
  }

  .request-primary,
  .request-secondary {
    font-size: 18px;
    height: 56px;
  }
}
