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

    body {
      height: 100vh;
      background: linear-gradient(135deg, #0B2B53 0%, #274C77 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    /* Elementos decorativos de fundo */
    .bg-decoration {
      position: absolute;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      animation: float 6s ease-in-out infinite;
    }

    .bg-decoration:nth-child(1) {
      top: 10%;
      left: 10%;
      animation-delay: 0s;
    }

    .bg-decoration:nth-child(2) {
      top: 70%;
      right: 10%;
      animation-delay: 2s;
    }

    .bg-decoration:nth-child(3) {
      top: 40%;
      left: 5%;
      width: 100px;
      height: 100px;
      animation-delay: 4s;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-20px); }
    }

    /* Container principal */
    .login-container {
      background: #FFFFFF;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      overflow: hidden;
      width: 900px;
      max-width: 90vw;
      min-height: 500px;
      display: flex;
      position: relative;
      z-index: 1;
    }

    /* Lado esquerdo - Informações */
    .login-info {
      background: linear-gradient(135deg, #0B2B53 0%, #274C77 100%);
      color: #FFFFFF;
      padding: 40px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
    }

    .login-info::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100px;
      height: 100%;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="20" r="2" fill="rgba(255,255,255,0.3)"/><circle cx="20" cy="50" r="1" fill="rgba(255,255,255,0.2)"/><circle cx="80" cy="80" r="1.5" fill="rgba(255,255,255,0.25)"/></svg>');
    }

    .logo-section {
      text-align: center;
      margin-bottom: 30px;
    }

    .logo {
      background: #FFFFFF;
      color: #0B2B53;
      border-radius: 15px;
      width: 80px;
      height: 60px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 20px;
      margin-bottom: 20px;
    }

    .login-info h1 {
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 15px;
      text-align: center;
    }

    .login-info p {
      font-size: 16px;
      line-height: 1.6;
      opacity: 0.9;
      text-align: center;
    }

    .features {
      margin-top: 30px;
    }

    .feature-item {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      font-size: 14px;
    }

    .feature-item i {
      margin-right: 10px;
      color: #A7B1C2;
    }

    /* Lado direito - Formulário */
    .login-form {
      padding: 40px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .form-header {
      text-align: center;
      margin-bottom: 30px;
    }

    .form-header h2 {
      font-size: 28px;
      color: #0B2B53;
      margin-bottom: 10px;
    }

    .form-header p {
      color: #3C3C3C;
      font-size: 14px;
    }

    .form-group {
      margin-bottom: 20px;
      position: relative;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      color: #0B2B53;
      font-weight: bold;
      font-size: 14px;
    }

    .form-group input {
      width: 100%;
      padding: 15px 20px;
      border: 2px solid #A7B1C2;
      border-radius: 10px;
      font-size: 16px;
      transition: all 0.3s;
      background: #F5F7FA;
    }

    .form-group input:focus {
      outline: none;
      border-color: #0B2B53;
      background: #FFFFFF;
      box-shadow: 0 0 0 3px rgba(11, 43, 83, 0.1);
    }

    .form-group .input-icon {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: #A7B1C2;
      cursor: pointer;
      margin-top: 12px;
    }

    .form-options {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 25px;
      font-size: 14px;
    }

    .remember-me {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .remember-me input[type="checkbox"] {
      width: auto;
    }

    .forgot-password {
      color: #0B2B53;
      text-decoration: none;
      font-weight: bold;
    }

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

    .login-btn {
      background: linear-gradient(135deg, #0B2B53 0%, #274C77 100%);
      color: #FFFFFF;
      border: none;
      padding: 15px;
      border-radius: 10px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s;
      margin-bottom: 20px;
    }

    .login-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(11, 43, 83, 0.3);
    }

    .login-btn:active {
      transform: translateY(0);
    }

    .signup-link {
      text-align: center;
      color: #3C3C3C;
      font-size: 14px;
    }

    .signup-link a {
      color: #0B2B53;
      text-decoration: none;
      font-weight: bold;
    }

    .signup-link a:hover {
      text-decoration: underline;
    }

    /* Responsividade */
    @media (max-width: 768px) {
      .login-container {
        flex-direction: column;
        width: 95vw;
        max-height: 90vh;
        overflow-y: auto;
      }

      .login-info {
        padding: 30px 20px;
        text-align: center;
      }

      .login-info h1 {
        font-size: 24px;
      }

      .login-form {
        padding: 30px 20px;
      }

      .form-header h2 {
        font-size: 24px;
      }
    }

    /* Animações */
    .login-container {
      animation: slideIn 0.6s ease-out;
    }

    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .form-group {
      animation: fadeInUp 0.6s ease-out forwards;
      opacity: 0;
    }

    .form-group:nth-child(1) { animation-delay: 0.1s; }
    .form-group:nth-child(2) { animation-delay: 0.2s; }
    .form-group:nth-child(3) { animation-delay: 0.3s; }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
