    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Segoe UI", sans-serif;
    }

   body {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background-image: url('./img/login.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .login-container {
      width: 900px;
      min-height: 520px;
      background: rgb(255, 255, 255);
      border-radius: 36px;
      overflow: hidden;
      display: flex;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    }

    .login-left {
      flex: 1;
      background: linear-gradient(160deg, #4fb887, #2f946b);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .logo {
      width: 200px;
      height: 200px;
      border-radius: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden; /* importante */
    }

  .logo img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    display: block;
  }

    .login-left h1 {
      font-size: 42px;
      margin-bottom: 15px;
    }

    .login-left p {
      font-size: 17px;
      line-height: 1.6;
      opacity: 0.9;
    }

    .circle {
      position: absolute;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      bottom: -60px;
      right: -50px;
    }

    .login-right {
      flex: 1;
      padding: 55px 50px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .login-right h2 {
      font-size: 34px;
      color: #222;
      margin-bottom: 10px;
    }

    .login-right .subtitle {
      color: #777;
      margin-bottom: 35px;
    }
    
    .center-box {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

	    .login-left h1 {
	      font-size: 42px;
	      text-align: center;
	    }

	    .login-left .center-box a.login-help,
	    .login-left .center-box a.login-help:link,
	    .login-left .center-box a.login-help:visited,
	    .login-left .center-box a.login-help:hover,
	    .login-left .center-box a.login-help:focus,
	    .login-left .center-box a.login-help:active {
	      color: #fff !important;
	      font-size: 18px;
	      font-weight: 700;
	      text-decoration: underline;
	      text-underline-offset: 4px;
	    }

	    .input-group {
      margin-bottom: 22px;
    }

    .input-group label {
      display: block;
      margin-bottom: 8px;
      font-size: 14px;
      color: #444;
      font-weight: 600;
    }

    .input-group input {
      width: 100%;
      padding: 15px 18px;
      border: 2px solid #875e5e;
      border-radius: 14px;
      font-size: 15px;
      outline: none;
      transition: 0.3s;
    }

    .input-group input:focus {
      border-color: #4fb887;
      box-shadow: 0 0 0 4px rgba(79, 184, 135, 0.15);
    }

    .options {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
      margin-bottom: 28px;
      color: #555;
    }

    .options a {
      color: #2f946b;
      text-decoration: none;
      font-weight: 600;
    }

    .btn-login {
      width: 100%;
      padding: 16px;
      border: none;
      border-radius: 16px;
      background: linear-gradient(135deg, #4fb887, #2f946b);
      color: white;
      font-size: 17px;
      font-weight: 700;
      cursor: pointer;
      transition: 0.3s;
      box-shadow: 0 10px 20px rgba(47, 148, 107, 0.25);
    }

    .btn-login:hover {
      transform: translateY(-2px);
      box-shadow: 0 15px 28px rgba(47, 148, 107, 0.35);
    }

    .register {
      margin-top: 25px;
      text-align: center;
      color: #666;
      font-size: 14px;
    }

    .register a {
      color: #2f946b;
      font-weight: 700;
      text-decoration: none;
    }

    @media (max-width: 800px) {
      .login-container {
        width: 92%;
        flex-direction: column;
      }

      .login-left {
        padding: 35px;
        text-align: center;
        align-items: center;
      }

      .login-left h1 {
        font-size: 32px;
      }

      .login-right {
        padding: 40px 30px;
      }
    }

    .erro-login {
  width: 100%;
  max-width: 360px;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: .9rem;
  text-align: center;
}
