@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-VariableFont_wdth_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

body {
  font-family: "Roboto", sans-serif;
  background: #f5f5f5;
  color: #222;
  margin: 0;
  padding: 0;
}

header {
  background-color: #e4b845;
  color: white;
  padding: 1rem;
  text-align: center;
}

.frontpage {
  background-color: #e4b845;
  color: white;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.header-content {
  max-width: 600px;
}

.frontpage img {
  width: 150px;
  margin-bottom: 1rem;
}

.frontpage h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.frontpage p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background-color: #3b290d;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.cta-button:hover {
  background-color: #222;
}
@media screen and (min-width: 1024px) {
  .frontpage {
    text-align: left;
  }
  .logo {
    display: flex;
    align-items: left;
    height: 200px;
  }
}

nav {
  background-color: #756956;
  padding: 0.5rem;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 1rem;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
  color: grey;
}

main {
  padding: 2rem;
  background: white;
  border-radius: 10px;
  max-width: 600px;
  margin: auto;
  margin-top: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

form {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  margin: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

fieldset {
  border: none;
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
}

button {
  background-color: #e4b845;
  color: white;
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #3b290d;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #756956;
  margin-top: 2rem;
  color: #fff;
}

/*Step indicator*/

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step img {
  width: 70px;
  height: auto;
}

.step span {
  margin-top: 0.4rem;
  font-weight: bold;
  color: #444;
}

.line {
  height: 4px;
  background-color: #888;
  flex-grow: 1;
  max-width: 100px;
}

.footertext {
  align-items: right;
}
