:root {
  --neutral-100: #f3f4f6;
  --neutral-800: #1f2937;
  --neutral-900: #111827;
  --primary: #001c39;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  font-weight: 400; /* torna mais leve */
}

body {
  background-color: var(--neutral-100);
  color: var(--neutral-800);
  font-size: 14px;
  line-height: 1.5;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 0 1.5rem;
  height: 60px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 28px;
}

.brand span {
  font-weight: 500;
  font-size: 16px;
  color: var(--neutral-900);
}

.header-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.icon-link {
  color: var(--neutral-800);
  font-size: 18px;
  text-decoration: none;
  transition: color 0.2s;
}

.icon-link:hover {
  color: var(--primary);
}

.login-container {
  display: flex;
  height: calc(100vh - 60px);
}

.login-panel {
  flex: 0.45;
  background-color: var(--neutral-100);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-panel h1 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--primary);
  font-weight: 600;
}

.login-panel p {
  margin-bottom: 30px;
  color: #555;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 6px;
  color: #333;
  font-weight: 500;
}

input[type="email"],
select {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: white;
}

button {
  margin-top: 10px;
  padding: 12px;
  width: 100%;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  cursor: pointer;
  font-weight: 500;
}

button:hover {
  background-color: #003366;
}

.error {
  margin-top: 15px;
  color: red;
}

.image-panel {
  flex: 0.55;
  background-color: black;
  overflow: hidden;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--neutral-800);
  text-decoration: none;
  font-size: 16px; /* tamanho maior */
  font-weight: 500;
  transition: color 0.2s ease;
}

.support-text {
  font-size: 16px;
  font-weight: 500;
}

.support-link:hover {
  color: var(--primary);
}
