<html lang="pt-br">
<head>
  <meta charset="UTF-8">
  <title>Login - Climev</title>
  <style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      background: linear-gradient(135deg, #b9e4d0, #6fb1a0, #4f8c8a);
    }

    .login-container {
      background: white;
      padding: 40px;
      border-radius: 15px;
      width: 320px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
      text-align: center;
    }

    .logo {
      font-size: 28px;
      font-weight: bold;
      color: #3c8c7c;
      margin-bottom: 10px;
    }

    .subtitle {
      font-size: 14px;
      color: #555;
      margin-bottom: 25px;
    }

    input {
      width: 100%;
      padding: 12px;
      margin: 10px 0;
      border-radius: 8px;
      border: 1px solid #ccc;
      outline: none;
      transition: 0.3s;
    }

    input:focus {
      border-color: #3c8c7c;
      box-shadow: 0 0 5px rgba(60,140,124,0.5);
    }

    button {
      width: 100%;
      padding: 12px;
      margin-top: 15px;
      border: none;
      border-radius: 8px;
      background: linear-gradient(135deg, #3c8c7c, #6fb1a0);
      color: white;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
    }

    button:hover {
      opacity: 0.9;
    }

    .footer {
      margin-top: 15px;
      font-size: 12px;
      color: #777;
    }

    .footer a {
      color: #3c8c7c;
      text-decoration: none;
    }
  </style>
</head>
<body>

  <div class="login-container">
    <div class="logo">CLIMEV</div>
    <div class="subtitle">Clínica Médica e Laboratório</div>

    <form>
      <input type="email" placeholder="Email" required>
      <input type="password" placeholder="Senha" required>
      <button type="submit">Entrar</button>
    </form>

    <div class="footer">
      <p><a href="#">Esqueceu a senha?</a></p>
    </div>
  </div>

</body>
</html>