    body {
      font-family: 'Open Sans', sans-serif;
      background: #0c1222;
      color: #e5e5e5;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      margin: 0;
      padding: 1px;
    }

    .form-container {
      background: #141b2d;
      border: 1px solid rgba(0, 153, 255, 0.2);
      padding: 25px;
      border-radius: 14px;
      width: 100%;
      max-width: 500px; /* TELA MENOR */
      text-align: center;
      box-shadow: 0 0 15px rgba(0,153,255,0.15);
    }

    .logo {
      width: 180px;
      margin-bottom: 10px;
      /* Sem efeitos */
    }

    h2 {
      color: #00bfff;
      margin-bottom: 18px;
      font-size: 20px;
      font-weight: 600;
    }

    label {
      display: block;
      text-align: left;
      margin-top: 12px;
      font-weight: 600;
      color: #b8b8b8;
      font-size: 14px;
    }

    input, select, textarea {
      width: 100%;
      padding: 10px;
      margin-top: 5px;
      border-radius: 8px;
      border: 1px solid #333;
      background: #1a1f2f;
      color: #fff;
      font-size: 14px;
      box-sizing: border-box;
    }

    textarea {
      height: 90px;
      resize: none;
    }

    input:focus, select:focus, textarea:focus {
      border-color: #00bfff;
      outline: none;
    }

    button {
      width: 100%;
      padding: 12px;
      margin-top: 20px;
      border: none;
      border-radius: 10px;
      background: linear-gradient(90deg, #00bfff, #0099ff);
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
    }

    button:hover {
      opacity: 0.9;
    }

    footer {
      text-align: center;
      margin-top: 18px;
      font-size: 12px;
      color: #777;
    }
  