:root {
  --neutral-100: #f9fafb;
  --neutral-800: #1f2937;
  --neutral-900: #111827;
  --primary: #2563eb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body, html {
  height: 100%;
  background: #fff;
}

.login-container {
  display: flex;
  height: 100vh;
}

/* painel esquerdo */
.login-panel {
  flex: 0.35; /* reduz largura para abrir mais espaço para o laranja */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  background: #fff;
  position: relative;
}

.header-login {
  position: absolute;
  top: 30px;
  left: 60px;
  right: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
}

.help {
  font-size: 14px;
  color: #555;
  text-decoration: none;
}

.form-box {
  max-width: 360px;
}

.form-box h1 {
  font-size: 26px;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 8px;
}

.form-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: #333;
}

input, select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
  background: #fff;
}

button {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
  background: #1e40af;
}

.error {
  margin-top: 15px;
  color: red;
  font-weight: 500;
}

/* rodapé fixado no fim do painel */
.support {
  position: absolute;
  bottom: 30px;
  left: 60px;
  font-size: 12px;
  color: #777;
}

.support a {
  color: #666;
  text-decoration: none;
}

.support a:hover {
  text-decoration: underline;
}

/* painel direito */
.image-panel {
  flex: 0.95; /* aumenta a largura do painel laranja */
  background: #ED7659;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.background-logo {
  position: absolute;    /* ocupa o painel inteiro */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://silimed.com/img/styles/2560x1440/site/pt-banner-header/jpg-05486fafaa01f9723b5504d4365ce7bb.jpg") no-repeat center;
  background-size: cover; /* ou "contain", depende se quer preencher ou não distorcer */
  opacity: 0.1;
}