/* reset.css */

/* 1) global font + background */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');

body {
  font-family: 'Montserrat', sans-serif;
  background-image: url('../images/reset.png');
  background-size: cover;
  background-position: center;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 5) the white “card” wrapper — pulled right up under the header */
.wrapper {
  background: rgba(255,255,255,0.95);
  border-radius: 0.75em;
  padding: 2em;
  max-width: 28em;
  width: 100%;
  box-shadow: 0 0.25em 0.5em rgba(0,0,0,0.1);
  text-align: center;
  margin: 0.5em auto 0;  /* tiny gap from header */
}

.info-message {
  max-width: 800px;
  margin: 1rem auto;
  padding: 1rem 1.5rem;
  background-color: #fff9e6;        /* very pale yellow */
  border-left: 4px solid #ffd54f;   /* golden accent line */
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.07);
  color: #333;
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: center;
  margin-top: .7rem;  
  margin-bottom: .7rem;
}


/* 7) inputs (email & password) */
.wrapper input:not([type="hidden"]) {
  display: block;
  width: 100%;
  max-width: 22em;
  margin: 0 auto 1.5em;
  padding: 1em;
  font-size: 1.1em;
  border: 1px solid #ccc;
  border-radius: 0.5em;
  box-shadow: 0 0.0625em 0.25em rgba(0,0,0,0.1);
  box-sizing: border-box;
  background: #fff;
}

/* 8) buttons (match input width) */
.wrapper button,
.wrapper .btn {
  display: block;
  width: 100%;
  max-width: 22em;
  margin: 0 auto 1.5em;
  padding: 1em;
  font-size: 1.1em;
  background: #ff6b6b;
  color: #fff;
  border: none;
  border-radius: 0.5em;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}

.wrapper button:hover,
.wrapper .btn:hover {
  background: #ff4b4b;
  box-shadow: 0 0.25em 0.5em rgba(255,105,180,0.2);
}
/* stack header + form vertically in the existing body flex */
body {
  flex-direction: column !important;
  align-items: center !important;
  min-height: auto !important;  /* undo any 100vh on the body */
}

    .confirmation-popup {
      position: fixed;
      top: 20%;
      left: 50%;
      transform: translateX(-50%);
      background-color: #fffbe6;
      border: 1px solid #ffe6aa;
      border-radius: 0.75em;
      padding: 1.5em 2em;
      box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.1);
      text-align: center;
      z-index: 1000;
      max-width: 26em;
    }
    .confirmation-popup button {
      margin-top: 1em;
    }