:root {
  /* Replace these with your vars */
  --primary: #f7931f;
  --primary-light: #e7f1ff;
  --primary-dark: #f78b11;

  --bg: #f7f9fc;
  --text: #1d1d1d;
  --text-light: #555;
  --border: #dde3ea;
  --white: #ffffff;

  --shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-nav {
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 0;
  z-index: 50;
  padding: 12px 0;
}

.nav-content {
  width: 92%;
  max-width: 1350px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
}

.logo-box {
  width: 34px;
  height: 34px;
  background: var(--primary-light);
  border-radius: 6px;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--text-light);
  font-size: 15px;
  transition: 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
}

/* Background Shapes */
.shape {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(50px);
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-light);
  top: -80px;
  left: -80px;
}

.shape-2 {
  width: 250px;
  height: 250px;
  background: var(--primary-light);
  bottom: -60px;
  right: -40px;
}

/* Login Layout */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 40px;
  flex: 1;
}

.login-card {
  background: var(--white);
  width: 100%;
  max-width: 380px;
  padding: 32px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

h2 {
  color: var(--text);
  font-size: 26px;
  font-weight: 600;
}

.sub-text {
  margin-top: 6px;
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 14px;
}

.input-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--text-light);
}

input,
select {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  transition: 0.2s;
}

input:focus,
select:focus {
  border-color: var(--primary);
  outline: none;
}

.btn-primary {
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.2s;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.forgot {
  display: block;
  text-align: center;
  margin-top: 14px;
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
}
