 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 body {
     font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
     background: #f4f6fb;
     color: #111827;
 }

 .page-wrapper {
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     /* padding: 24px; */
 }

 .auth-container {
     width: 100%;
     min-height: 640px;
     display: flex;
     align-items: stretch;
     justify-content: space-between;
     gap: 48px;
 }

 .left-panel {
     flex: 1.4;
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     padding-right: 24px;
 }


 .mockup-card {
     position: relative;
     background: #ffffff;
     border-radius: 24px;

     padding: 32px;
     width: 100%;
     max-width: 1080px;
     z-index: 1;
 }

 .mockup-header-dots {
     display: flex;
     gap: 6px;
     margin-bottom: 24px;
 }

 .mockup-header-dots span {
     width: 6px;
     height: 6px;
     border-radius: 999px;
     background: #e5e7eb;
 }

 .image-grid {
     display: grid;
     grid-template-columns: repeat(3, minmax(0, 1fr));
     gap: 16px;
 }

 .image-card {
     position: relative;
     border-radius: 16px;
     overflow: hidden;
     background: #e5e7eb;
 }

 .image-card img {
     width: 100%;
     aspect-ratio: 4 / 3;
     /* altura acompanha a largura */
     object-fit: cover;
     display: block;
 }

 .image-badge {
     position: absolute;
     top: 12px;
     right: 12px;

     /* tamanho flexível */
     padding: 6px 12px;
     border-radius: 999px;

     display: inline-flex;
     align-items: center;
     gap: 6px;

     background: rgba(15, 23, 42, 0.92);
     color: #f9fafb;
     box-shadow: 0 6px 18px rgba(15, 23, 42, 0.35);

     font-size: 11px;
     font-weight: 600;
     white-space: nowrap;
     /* evita quebrar no meio */
 }

 .image-badge i {
     font-size: 14px;
 }


 /* Se quiser brincar com cores por tipo (opcional) */
 .image-card--vida .image-badge {
     background: #FC0000;
 }

 .image-card--saude .image-badge {
     background: #009a5b;
 }

 .image-card--odonto .image-badge {
     background: #6366f1;
 }

 .image-card--viagem .image-badge {
     background: #eab308;
 }

 .image-card--empresarial .image-badge {
     background: #0f172a;
 }

 .image-card--vale-refeicao .image-badge {
     background: #f97316;
 }


 .right-panel {
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .login-card {
     width: 100%;
     height: 100vh;
     max-width: 640px;
     background: #ffffff;
     border-radius: 20px 0px 0px 20px;
     box-shadow: 0 24px 80px rgba(15, 23, 42, 0.16);
     padding: 32px 32px 28px;

     display: flex;
     flex-direction: column;
     justify-content: flex-start;
 }

 .login-main {
     margin-top: auto;
     margin-bottom: auto;
 }

 .logo-row {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 24px;
 }

 .logo-img {
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .logo-img img {
     max-width: 350px;
     height: auto;
 }

 .logo-badge {
     width: 120px;
     height: 74px;
     padding: 4px;
     border-radius: 8px;
     background: #2563eb;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #ffffff;
     font-weight: 600;
     font-size: 20px;
 }

 .logo-text {
     display: flex;
     flex-direction: column;
 }

 .logo-text small {
     font-size: 12px;
     color: #6b7280;
     font-weight: 500;
 }

 .logo-text strong {
     font-size: 14px;
     color: #111827;
 }

 .login-title {
     margin-bottom: 4px;
     font-size: 22px;
     font-weight: 700;
     color: #111827;
 }

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


 form {
     display: flex;
     flex-direction: column;
     gap: 16px;
 }

 .form-group {
     display: flex;
     flex-direction: column;
     gap: 6px;
 }

 label {
     font-size: 13px;
     font-weight: 500;
     color: #374151;
 }

 .input-wrapper {
     position: relative;
 }

 .input-field {
     width: 100%;
     padding: 10px 12px;
     border-radius: 8px;
     border: 1px solid #d1d5db;
     font-size: 14px;
     outline: none;
     background: #f9fafb;
     transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
 }

 .input-field::placeholder {
     color: #9ca3af;
 }

 .input-field:focus {
     background: #ffffff;
     border-color: #001f44;
     box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.3);
 }

 .password-toggle-btn {
     position: absolute;
     right: 10px;
     top: 50%;
     transform: translateY(-50%);
     border: none;
     background: transparent;
     cursor: pointer;
     padding: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #9ca3af;
 }

 .password-toggle-btn i {
     font-size: 14px;
 }

 .forgot-row {
     display: flex;
     justify-content: flex-end;
     margin-top: -4px;
     margin-bottom: 8px;
 }

 .forgot-link {
     font-size: 12px;
     color: #6b7280;
     text-decoration: none;
 }

 .forgot-link:hover {
     text-decoration: underline;
 }

 .btn-primary {
     border: none;
     border-radius: 999px;
     padding: 11px 16px;
     font-size: 14px;
     font-weight: 600;
     cursor: pointer;
     background: #001f44;
     color: #ffffff;
     width: 100%;
     margin-top: 4px;
     transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.05s ease;
 }

 .btn-primary:hover {
     background: #001f44;
     box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
     transform: translateY(-1px);
 }

 .btn-primary:active {
     background: #001f44;
     transform: translateY(0);
     box-shadow: none;
 }

 .terms {
     margin-top: 18px;
     font-size: 11px;
     color: #9ca3af;
     text-align: center;
     line-height: 1.4;
 }

 .terms a {
     color: #194096;
     text-decoration: none;
     font-weight: 500;
 }

 .terms a:hover {
     text-decoration: underline;
 }

 /* RESPONSIVO */
 @media (max-width: 1300px) {
     .image-grid {
         grid-template-columns: repeat(2, minmax(0, 1fr));
     }
 }

 @media (max-width: 1024px) {
     .auth-container {
         flex-direction: column;
         align-items: center;
         gap: 32px;
     }

     .left-panel {
         display: none;
     }

     .mockup-card {
         max-width: 640px;
         padding: 24px;
     }

     .login-card {
         box-shadow: none;
         padding: 0;
         background: transparent;
     }
 }