* {
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(rgba(8, 71, 35, 0.85), rgba(4, 45, 24, 0.85)),
    url("../application-bg.jpg") center/cover no-repeat;
    background-attachment:fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #111;
}

/* HEADER */
.header {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.header span {
  font-size: 24px;
  cursor: pointer;
}

.header h1 {
  font-size: 20px;
  margin: 0;
  font-weight: bold;
}

/* CONTAINER */
.container {
  width: 380px;
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  animation: rise 0.6s ease;
}

/* FORM */
form label {
  font-size: 13px;
  display: block;
  margin-top: 12px;
}

form input,
form select {
  width: 100%;
  padding: 11px;
  margin-top: 4px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

input:focus, select:focus{
  outline:none;
}

.gender {
  display: flex;
  gap: 15px;
  margin-top: 6px;
  font-size: 13px;
}

.continue-btn {
  width: 100%;
  padding: 14px;
  margin-top: 18px;
  border-radius: 30px;
  border: none;
  background: darkgoldenrod;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

/* PROGRESS */
.progress-wrap {
  margin-bottom: 20px;
}

.progress-text {
  text-align: center;
  font-size: 13px;
  margin-bottom: 6px;
}

.progress-bar {
  height: 6px;
  background: #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  color:#ea860c;
  transition: 0.3s;
}

/* SCREENS */
.screen {
  display: none;
  animation: fade 0.4s ease;
}

.screen.active {
  display: block;
}

.options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.option {
  padding: 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: 0.25s;
}

.option.active {
  background: #a7ad52;
  color: #fff;
  border-color: #a7ad52;
}

.nav {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

.btn {
  flex: 1;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: darkgoldenrod;
  color: #fff;
  cursor: pointer;
}

.btn.back {
  background: #9ca3af;
}

/* FOOTER */
.footer {
  margin: 18px 0;
  font-size: 12px;
  color: #d1d5db;
}

/* ANIMATIONS */
@keyframes fade {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media screen and (max-width:600px){
  .container{
    width:90%;
  }
}