@import 'https://fonts.googleapis.com/css?family=Inter:300,400,700,900&display=swap';

:root {
    --color-primary: #D52C60;
    --color-secondary: #D52C60;
    --color-font: #5B5B5B;
    --color-bg: rgba(255,255,255,1);
}

html, body {
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
}
*:focus {
    outline: none;
    border: none;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-bg);
}

.wrapper {
  width: 95%;
  max-width: 720px;
  margin: 10vh auto;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  color: var(--color-font);
}

.title {
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
}

.description {
  margin-top: 20px;
  font-size: 20px;
  line-height: 22px;
}

.form {
  margin-top: 30px;
  padding: 15px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  border: 2px solid var(--color-primary);
}

.form-label {
  margin-right: 10px;
  font-weight: 400;
  font-size: 18px;
  line-height: 40px;
  font-weight: 600;
}

.form-input {
  flex: 1;
  height: 36px;
  font-size: 18px;
  line-height: 36px;
  border: 1px solid var(--color-secondary);
}

.form-btn {
  display: flex;
  padding: 10px;
  gap: 10px;
  height: 42px;
  font-size: 18px;
  line-height: 22px;
  display: flex;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  border: none;
  background: var(--color-bg);
}