/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f3f4f6;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Container Styling */
.container {
  background-color: #fff;
  padding: 2.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

/* Headings and Text */
.container h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: #111827;
}

.container p {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

/* Form Elements */
form {
  display: flex;
  flex-direction: column;
}

label {
  text-align: left;
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 0.3rem;
}

input[type="email"] {
  padding: 0.6rem;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  transition: border-color 0.2s ease;
}

input[type="email"]:focus {
  border-color: #2563eb;
  outline: none;
}

/* Button Styling */
button[type="submit"] {
  padding: 0.7rem;
  background-color: #2563eb;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button[type="submit"]:hover {
  background-color: #1d4ed8;
}

/* Note Text */
.note {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 1.2rem;
}

.container {
  position: relative;
  padding: 2rem;
  /* other container styles */
}

.back-link {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-size: 14px;
  text-decoration: none;
  color: #007BFF;
}

.back-link:hover {
  text-decoration: underline;
}
