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

@font-face {
  font-family: 'BMSHumanityBold';
  src:
    url('../fonts/BMSHumanity-Bold.otf') format('opentype');

  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BMSHumanityExtraBold';
  src:
    url('../fonts/BMSHumanity-ExtraBold.otf') format('opentype');

  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BMSHumanity-Regular';
  src:
    url('../fonts/BMSHumanity-Regular.otf') format('opentype');

  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat-Bold';
  src:
    url('../fonts/Montserrat-Bold.otf') format('opentype');

  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Product Sans Bold.ttf';
  src:
    url('../fonts/Product Sans Bold.ttf') format('.ttf');

  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* BODY */
body {
  font-family: Arial, sans-serif;
  background: #ffffff;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  min-height: 100vh;
}

.hero {
  max-width: 400px;
  width: 100%;
}

/* CARD */
.container {
  background: white;

  width: 90%;
  max-width: 400px;
}

/* TITLE */
h1 {
  text-align: center;
  margin-bottom: 25px;
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
}

/* INPUT */
input[type="text"] {
  padding: 12px;
  margin-bottom: 20px;

  border: 1px solid #ccc;

  font-size: 16px;
}

/* CHECKBOX */
.checkbox-group {
  display: flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 20px;
}

/* BUTTON */
button {
  padding: 12px;

  border: none;
  border-radius: 12px;

  background: #5d3275;
  color: white;

  font-size: 16px;

  cursor: pointer;

  max-width: 100px;
    margin: 0 auto;
}

button:hover {
  opacity: 0.9;
}

/* MESSAGE */
#message {
  margin-top: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.custom-input {
  width: 100%;
  padding: 12px 20px;     
  margin: 8px 0;         
  box-sizing: border-box;
  border-radius: 12px;     
  background-color: lightgray;
}