/* Base styles */
  :root {
    --primary-color: #543dfd;
    --primary-color-hover: #3b2aca;
    --text-color: #333333;
    --text-secondary: #666666;
    --background-color: #ffffff;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --spacing-unit: 8px;
    --input-height: 48px;
  }

  body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", "Inter", "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.5;
  }

  .login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: calc(var(--spacing-unit) * 2);
    background-color: var(--background-color);
  }

  .login-panel {
    width: 100%;
    max-width: 360px;
    padding: calc(var(--spacing-unit) * 4);
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px var(--shadow-color);
    margin-bottom: calc(var(--spacing-unit) * 4);

  }

  .login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: calc(var(--spacing-unit) * 4);
    max-width: 360px;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .login-logo img {
   width: auto;
   max-width: 120px;
   height: auto;
   max-height: 80px;
   object-fit: contain;
   margin: 0;
   padding: 0;
  }

  .login-logo h1 {
    font-size: 35px;
    font-weight: bold;
    color: #543dfd; /* cor next */
    margin: 0;
    line-height: 1.5;
  }

  .login-logo span {
    color: #000000; /* Analytics */
  }

  .form-control {
    padding-left: 35px;
  }

  .input-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
  }

  .btn-custom {
    background-color: #543dfd; /* Botão em roxo */
    border: none;
    color: white;
  }

  .btn-custom:hover {
    background-color: #3b2aca; /* Hover em roxo escuro */
    color: white;
  }

  .footer-text {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #999;
  }

