/* Genel Stil */
body, html {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    margin-top:75px;
    padding: 0;
    display: flex;
    justify-content: center; /* Yatayda ortalar */
    align-items: center; /* Dikeyde ortalar */
    flex-direction: column; /* İçerikleri dikeyde sıralar */

  }

 /* Başlık (H2) Stili */
  h2 {
    text-align: center;
    font-weight: bold;
    font-family: 'Roboto Black';
    color: #000000;
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #343a40, 0 0 30px #343a40, 0 0 40px #343a40, 0 0 55px #343a40, 0 0 75px #343a40;
  }

  /* Container */
 h1 {
    text-align: center;
    color: #333;
    padding-bottom: 20px;
  }

  /* Logo Div */
  .logo {
    width: 264px;
    height: 136px;
    background-position: center;
    background-size: cover; /* Görselin boyutunu div'e uyacak şekilde ayarlama */
    margin-bottom: 0;
    transform: scale(0.8); /* Boyutları %10 küçültmek için transform kullanımı */
    transform-origin: center; /* Ölçekleme merkezi, logo merkezinden yapılacak */
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
  }

  /* Form Etiketleri */
   label {
     display: block;
     margin-bottom: 5px;
   }

   input[type="text"],
   input[type="password"] {
     width: 100%; /* Input'ların tam genişlikte olması sağlanacak */
     padding: 12px;
     margin-bottom: 10px;
     border: 1px solid #ccc;
     border-radius: 4px;
   }

   input[type="text"]:hover,
   input[type="password"]:hover {
     background-color: lightyellow;
     border: 1px solid red;
   }

   button {
     width: auto; /* Buton tam genişlikte olacak */
     padding: 12px;
     background-color: #5cb85c;
     color: white;
     border: none;
     border-radius: 6px;
     cursor: pointer;
     font-weight: bold;
   }

  button:hover {
    background-color: #4cae4c;
  }

  /* Alt metinler */
  .beta {
    text-align: center;
    color: #0000AA;
    font-style: normal;
    font-size: 15px;
  }

  .haklar {
    text-align: center;
    color: #343a40;
    font-size: 13px;
  }

  .created {
    text-align: center;
    color: #343a40;
    font-size: 12px;
  }

/* Modal Stili */
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
  }
  
  .modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 400px;
    position: relative;
  }
  
  .close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .close:hover,
  .close:focus {
    color: red;
    text-decoration: none;
    cursor: pointer;
  }
  
/* <p> için.... Sayfa genelinde ortalama için CSS */
  .message {
    width: 100%;
    text-align: center;
    padding: 20px;
    margin: 20px 0;
    background-color: #f8d7da; /* Kırmızımsı bir arka plan rengi */
    color: #721c24; /* Koyu kırmızı metin rengi */
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
  }

  
