/* ===== REGISTER PAGE ===== */

.register-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--bg-color);
  padding: 1rem;
}

/* Card */
.register-card {
  background-color: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  padding: 2rem;
}

/* Logo */
.register-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  text-decoration: none;
  color: var(--text-color);
}

.register-logo i {
  font-size: 2rem;
  color: var(--primary-color);
}

.register-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
}

.register-subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.logo img {
  width: 50px;
  height: 50px;
  background-color: rgb(77, 77, 77);

  border-radius: 10px;
}

.logo i {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 20px;
  font-weight: bold;
  color: #0f1724;
}

/* Form */
.register-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.register-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
  display: block;
}

.register-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.register-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.12);
}

/* Password row */
.register-password-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

/* Message */
.register-message {
  min-height: 18px;
  font-size: 0.8rem;
  color: var(--danger);
}

/* Footer */
.register-footer {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 0.85rem;
}

.register-footer a {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
}

.register-footer a:hover {
  text-decoration: underline;
}
