.pass-reset-container {
  min-height: calc(100vh - 70px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.pass-reset-form {
  /* border: 1px solid gray; */
  border-radius: 10px;
  width: 60%;
  display: flex;
  padding: 0.5rem;
  gap: 1rem;
  flex-direction: column;
}

@media (max-width: 900px){
  .pass-reset-form{
    width: 90%;
  }
}

@media (max-width: 400px){
  .pass-reset-form{
    width: 96%;
  }
}




.pass-reset-form label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-align: left;
}

.pass-reset-form input[type="email"] {
  padding: 0.5rem 1rem;
  border: 1px solid rgb(206, 202, 202);
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
  outline: none;
  max-width: 100%;
  transition: border-color 0.2s ease-in-out;
}

.pass-reset-form input[type="email"]:focus {
  border-color: var(--primary-color);
}

.pass-reset-form .pass-reset-info {
  color: rgb(65, 62, 62);
}

.reset-link-btn {
  width: fit-content;
  /* margin-left: auto; */
  padding: 0.3rem 1rem;
  color: var(--link-color);
  background-color: white;
  border: 1px solid var(--link-color);
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

.reset-link-btn:hover {
  opacity: 0.7;
}

/* password_reset_done.html */
.pass-reset-d-cont {
  min-height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  gap: 1rem;
}

/* password_reset_confirm.html */
.reset-wrap {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.reset-box {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 400px;
}

.reset-header {
  text-align: center;
  margin-bottom: 2rem;
}

.reset-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f5f5f4;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #6b7280;
}

.reset-icon--success {
  background: #eaf3de;
  border-color: #c0dd97;
  color: #3b6d11;
}

.reset-icon--warn {
  background: #faeeda;
  border-color: #fac775;
  color: #854f0b;
}

.reset-box h2 {
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0 0 4px;
}

.reset-box p {
  font-size: 0.8125rem;
  color: #6b7280;
  margin: 0;
}

.reset-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.reset-field label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #111;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.reset-field input {
  height: 36px;
  padding: 0 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.15s;
}

.reset-field input:focus {
  border-color: rgba(0, 0, 0, 0.4);
}

.reset-error {
  font-size: 0.75rem;
  color: #a32d2d;
}

.reset-box button[type="submit"],
.reset-btn {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin-top: 6px;
  border: none;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s;
  box-sizing: border-box;
}

.reset-box button[type="submit"]:hover,
.reset-btn:hover {
  opacity: 0.85;
}

.reset-footer {
  text-align: center;
  font-size: 0.9rem;
  color: #393b41;
  margin: 1.25rem 0 0;
}

.reset-footer a {
  color: #393b41;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.reset-box--success,
.reset-box--invalid {
  text-align: center;
}

.reset-box--success p,
.reset-box--invalid p {
  margin-bottom: 1.5rem;
}

.reset-box--invalid .reset-btn {
  background: var(--link-color)
}

.reset-box--invalid .reset-btn:hover {
  opacity: 0.75;
}


