body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column; /* Stack children vertically */
    justify-content: space-between; /* Push footer to bottom */
    font-family: Arial, sans-serif;
}
.container {
    flex: 1;  /* Fills remaining space to push footer down */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center main content vertically */
    align-items: center;
    text-align: center;
    padding: 24px;
}


img {
    width: 60%;        /* Adjust as needed: try 60–80% */
    max-width: 500px;  /* Optional: prevents it getting too big on large screens */
    height: auto;      /* Keeps aspect ratio */
    margin-bottom: 20px;
}


h1 {
    color: orange;
    font-size: 4rem;
    margin: 0;
}

p {
    font-size: 1.2rem;
    color: #555;
    margin-top: 10px;
}
/* Centered layout */
.reset-body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #fff;
    padding-top: 100px;
}

/* Main heading */
.reset-title {
    color: orange;
    font-size: 2.5rem;
}
/* Reset default spacing */
html, body {
  height: 100%;
  overflow-y: auto;
}


/* Container fix to ensure top start */
.container {
  padding-top: 24px; /* Give breathing room */
  overflow-y: auto;   /* Let it scroll if needed */
}

/* Title at the very top */
h1 {
    font-size: 28px;
    text-align: center;
    margin-top: 0; /* Ensure no margin pushes it down */
    padding-top: 24px; /* Optional: small top padding */
    margin-bottom: 10px;
}


/* Subtitle / Update line */
.update {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 24px;
}

/* Main section headers */
h2 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 8px;
    font-weight: bold;
}

/* Subheaders */
h3 {
    font-size: 17px;
    margin-top: 20px;
    margin-bottom: 6px;
    font-weight: normal;
}

/* Paragraphs */
p {
    font-size: 16px;
    margin-bottom: 14px;
    line-height: 1.6;
}

/* Bullet lists */
ul {
    padding-left: 36px;
    margin-top: 0;
    margin-bottom: 16px;
}

li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Logo image */
img {
    display: block;
    margin: 40px auto 0;
    max-width: 120px;
}

/* Input fields */
.reset-input {
    margin: 10px;
    padding: 12px;
    width: 300px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    color: orange;
}

/* Submit button */
.reset-button {
    padding: 12px 24px;
    font-size: 1rem;
    background-color: orange;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    flex-direction: column;
}

.reset-button:hover {
    background-color: darkorange;
}

/* Message text */
.reset-message {
    margin-top: 15px;
    font-weight: bold;
}

.reset-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* or center */
  gap: 10px;
}

.footer {
    text-align: center;
    font-size: 0.9em;
    color: #777;
    padding: 20px;
    margin-top: 50px;
    border-top: 1px solid #ccc;
}

.footer a {
    color: #3366cc;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
