header {
  background: #295540;
  display: flex;
  justify-content: space-between;
  align-items: center;   /* 🔥 fixes vertical alignment */
  padding: 15px 25px;
  border-radius: 0 0 4px 4px;   /* soft edges */
}

/* LEFT SIDE */
.header-left h1 {
  margin: 0;
  font-size: 26px;
  color: #ffffff;
}

.header-left p {
  margin: 3px 0 0;
  font-size: 14px;
  color: #dbe7d4;
}

/* RIGHT SIDE */
.header-right {
  text-align: right;
  font-size: 14px;
  color: #dbe7d4;
}

.header-right p {
  margin: 2px 0;
}
body{
    font-family:segoe-ui, Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    /* background-color: #ffffff; */
    background: linear-gradient(135deg,#a8cfcf,#d6e3e3);
    color: #0b0808;
    font-weight: 500;
}



label{
font-size:13px;
    font-weight: 500;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Segoe UI, Arial, sans-serif;
}
.box{
width:100%;
max-width:480px;
margin:80px auto;
padding:40px;
border-radius:14px;
background:#f9f9f9;
box-shadow:0 12px 30px rgba(0,0,0,0.12);
}@media (max-width: 768px) {
    .container {
        width: 100%;
    }

    body{
        padding-bottom:25px;
    }
}

@media (max-width: 600px) {

  .top-header {
    display: flex;
    flex-direction: column;   /* stack properly */
    align-items: flex-start;
    gap: 8px;                 /* spacing between sections */
    padding: 15px;
  }

  .header-left h1 {
    font-size: 20px;          /* smaller for mobile */
  }

  .header-left p {
    font-size: 13px;
  }

  .header-right {
    width: 100%;
    text-align: left;         /* align with left side */
    font-size: 13px;
    padding: 0;
    padding-top: 8px;
    margin-top: 5px;
  }

  .header-right p {
    margin: 2px 0;

  }

}
.buttons{
margin-top:25px;
display:flex;
justify-content:center;
gap:15px;
}

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

flex:1;
padding:10px;
border:none;
border-radius:6px;
font-size:15px;
cursor:pointer;
font-weight:500;
background:#4CAF50;
color:white;
}

.previous-btn{
background:#6b7280;
color:white;
}

.submit-btn{
background:#2563eb;
color:white;
}

button:hover{
transform:translateY(-1px);
}
/* Chrome, Edge, Safari */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-color: white;
    border: 1px solid #ccc;
    padding-right: 30px;

    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'><polyline points='6 9 12 15 18 9'/></svg>");
    
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
}

html, body{
    height:100%;
    margin:0;
}

.page{
    min-height:100vh;
    display:flex;
    flex-direction:column;
}

.content{
    flex:1;
}