
<!DOCTYPE html>
<html lang="tr">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Hesabınıza giriş yapın</title>
  <style>
    body {
      font-family: Segoe UI, Arial, sans-serif;
      background-color: #f2f2f2;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
    }
    .container {
      background: #fff;
      padding: 40px;
      width: 350px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      border-radius: 8px;
    }
    .logo {
      margin-bottom: 20px;
    }
    input {
      width: 100%;
      padding: 10px;
      margin: 10px 0;
      border: 1px solid #ccc;
      border-radius: 4px;
      box-sizing: border-box; /* FIX */
    }
    .button-wrapper {
      display: flex;
      justify-content: center;
      margin-top: 10px;
    }
    button {
      width: 100%;
      padding: 10px;
      background-color: #0067b8;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      box-sizing: border-box; /* FIX */
    }
    button:hover {
      background-color: #005da6;
    }
  </style>
</head>
<body>
  <div class="container">
    <div class="logo">
      <img src="https://upload.wikimedia.org/wikipedia/commons/4/44/Microsoft_logo.svg" alt="Microsoft" style="height:24px;">
    </div>

    <h2>Oturum aç</h2>

    <input type="text" placeholder="E-posta, telefon veya Skype">
    <input type="password" placeholder="Parola">

    <div class="button-wrapper">
      <button onclick="">Oturum aç</button>
    </div>

  </div>

 
</body>
</html>