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

body {
  min-height: 100vh;
  background: url("Gotrackbackdrop.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  max-width: 450px;
}

.logo {
  width: 220px;
  margin-bottom: 20px;
}

.sidebar-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.tagline {
  color: #cfd8dc;
  font-size: 16px;
  line-height: 1.6;
}

.login-card {
  background: #ffffff;
  color: #1f2937;
  width: 380px;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.login-card h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 25px;
}

.login-card label {
  font-size: 12px;
  font-weight: 600;
  color: #2563eb;
  display: block;
  margin-bottom: 6px;
}

.login-card input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 18px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}

.login-card input:focus {
  outline: none;
  border-color: #2563eb;
}

.login-card button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(180deg, #3b82f6, #2563eb);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.login-card button:hover {
  opacity: 0.90;
}

@media (max-width: 900px) {
  .container {
    flex-direction: column;
    gap: 40px;
  }

  .brand {
    text-align: center;
  }
}