/* Font */
body {
  color: #222;
  padding: 20px;
  background-color: #f8f8f8;
}

.card {
  max-width: 700px; /* normal size */
  width: 100%; /* responsive */
  border-radius: 8px;
}

.container {
  min-height: 55vh;
  display: flex; /* 🔥 required */
  flex-direction: column;
  align-items: center; /* vertical center */
  justify-content: center; /* horizontal center */
}

.btn-danger {
  background-color: #ff3434 !important;
  border: none;
}
.btn-danger:hover {
  background-color: #e83737 !important;
}

.preview-img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  margin-top: 10px;
  border-radius: 12px;
  display: none;
}

.divider-text {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
}

.divider-text::before,
.divider-text::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ddd;
}

.custom-divider {
  border: none;
  height: 2px;
  background-color: #585858;
}

.signup {
  margin-top: 20px; /* more breathing space */
  font-size: 0.95rem;
  color: #555;
}

.signup a {
  background-color: #ff3434 !important;
  padding: 6px 12px; /* better spacing */
  border-radius: 8px; /* softer corners */
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block; /* fixes spacing issues */
  transition: all 0.25s ease;
}

.signup a:hover {
  background-color: #e83737 !important;
  transform: translateY(-2px); /* subtle lift effect */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* depth */
}
