.page-container {
  max-width: 400px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #222;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
}

.logo {
  display: block;
  max-width: 180px;
  margin: 0 auto 30px;
}

h2 {
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 24px;
  text-align: center;
}

.field {
  margin-bottom: 18px;
}

.field label {
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}

.field input[type="email"],
.field input[type="password"] {
  width: 100%;
  padding: 10px 14px;
  font-size: 1rem;
  border: 1.5px solid #ddd;
  border-radius: 5px;
  transition: border-color 0.3s ease;
}

.field input[type="email"]:focus,
.field input[type="password"]:focus {
  border-color: #4f46e5; /* Indigo-ish accent */
  outline: none;
}

.field.remember-me {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.actions {
  margin-top: 30px;
  text-align: center;
}

.actions input[type="submit"],
.actions button {
  background-color: #111;
  border: none;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.25s ease;
  width: 100%;
  max-width: 100%;
}

.actions input[type="submit"]:hover,
.actions button:hover {
  background-color: #333;
}

/* Optional: center devise links */
#devise-links {
  margin-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
}

#devise-links a {
  color: #4f46e5;
  text-decoration: none;
  margin: 0 6px;
}

#devise-links a:hover {
  text-decoration: underline;
}
/* Inline helper text */
.field small {
  display: block;
  margin-top: 6px;
  color: #777;
  font-size: 0.85rem;
  font-weight: 400;
}

/* Pending confirmation box */
.pending-confirmation {
  background-color: #fffbe6;
  border: 1px solid #ffe58f;
  padding: 10px 14px;
  border-radius: 6px;
  margin-bottom: 18px;
  font-size: 0.95rem;
  color: #8c6d1f;
}

/* "Cancel my account" button style */
.danger-button {
  background-color: #dc3545;
  border: none;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.25s ease;
  width: 100%;
}

.danger-button:hover {
  background-color: #b02a37;
}
