/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* Layout */
.main-container {
  display: flex;
  height: 100vh;
}

/* 🔵 LEFT PANEL */
.left-panel {
  flex: 1;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}

.left-panel h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.left-panel p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.left-panel ul {
  list-style: none;
}

.left-panel li {
  margin-bottom: 10px;
  font-size: 14px;
}

/* ⚪ RIGHT PANEL */
.right-panel {
  flex: 1;
  background: #f8fafc;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 🧾 CARD */
.reset-card {
  width: 360px;
  padding: 30px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  animation: slideUp 0.6s ease;
  transition: 0.3s;
}

.reset-card:hover {
  transform: translateY(-5px);
}

/* Animation */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Title */
.reset-card h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #1e293b;
}

/* Inputs */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  font-size: 13px;
  color: #475569;
}

.form-group input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #f1f5f9;
  transition: 0.3s;
}

/* Input focus */
.form-group input:focus {
  outline: none;
  border-color: #0ea5e9;
  box-shadow: 0 0 0 2px rgba(14,165,233,0.2);
}

/* 🔥 Button */
.reset-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(90deg, #0ea5e9, #0284c7);
  color: white;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.reset-btn:hover {
  transform: scale(1.03);
}

/* Messages */
.success-msg {
  background: #dcfce7;
  color: #16a34a;
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.error-msg {
  background: #fee2e2;
  color: #dc2626;
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* Links */
.extra-links {
  margin-top: 15px;
  text-align: center;
}

.extra-links a {
  color: #0284c7;
  text-decoration: none;
}

.extra-links a:hover {
  text-decoration: underline;
}