/*📌 Purpose:
➡️ This file will control design & layout
*/
/* Google-like clean font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* Page background */
body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}

/* Center everything */
.page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Glass card */
.card {
  background: rgba(255, 255, 255, 0.95);
  width: 420px;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* Title */
.card h1 {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1f2937;
}

/* Subtitle */
.subtitle {
  text-align: center;
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 25px;
}

/* Inputs */
form input,
form select,
form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

form textarea {
  resize: none;
  height: 110px;
}

/* Focus effect */
form input:focus,
form select:focus,
form textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

/* Button */
button {
  width: 100%;
  padding: 14px;
  background: #2563eb;
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.1s ease;
}

button:hover {
  background: #1d4ed8;
}

button:active {
  transform: scale(0.98);
}