/* Sayfa genel stili */
body {
    font-family: Arial, sans-serif;
    background-color: #466ce9; /* Arka plan rengini açık gri yaptık */
    display: flex;
    justify-content: center; /* İçeriği yatayda ortaladık */
    align-items: center; /* İçeriği dikeyde ortaladık */
    height: 100vh; /* Sayfanın tamamını kaplaması için yüksekliği %100 yapıyoruz */
    margin: 0; /* Tarayıcı varsayılan marginini kaldırdık */
  }
  
  /* Kayıt kutusu */
  .register-box {
    background-color: #c2eff7; /* Beyaz zemin */
    padding: 30px;
    border-radius: 8px; /* Yuvarlak köşeler */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Hafif gölge */
    text-align: center;
    width: 100%;
    max-width: 400px; /* Kutu genişliği max 400px olacak */
  }
  
  /* Başlık */
  .register-box h2 {
    font-size: 24px;
    color: #333; /* Koyu gri renk */
    margin-bottom: 20px; /* Alt boşluk */
  }
  
  /* Formdaki input alanları */
  .input-box {
    margin-bottom: 20px; /* Alt boşluk */
    text-align: left; /* Etiketlerin sola hizalanması */
  }
  
  .input-box label {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px; /* Etiket ile input arasına boşluk */
  }
  
  .input-box input {
    width: 100%; /* Genişlik %100 olacak */
    padding: 10px;
    border: 1px solid #ddd; /* Hafif gri kenarlık */
    border-radius: 4px; /* Yuvarlak köşeler */
    font-size: 16px;
  }
  
  .terms {
    margin-bottom: 20px; /* Alt boşluk */
    text-align: left;
  }
  
  .terms input {
    margin-right: 10px; /* Onay kutusunun sağında boşluk */
  }
  
  .terms label {
    font-size: 14px;
    color: #555; /* Gri renk */
  }
  
  /* Kayıt ol butonu */
  .button-box {
    text-align: center;
  }
  
  .button-box button {
    padding: 10px 20px;
    background-color: #4CAF50; /* Yeşil renk */
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer; /* İmleç değişir */
    transition: background-color 0.3s ease; /* Geçiş efekti */
  }
  
  .button-box button:hover {
    background-color: #45a049; /* Biraz daha koyu yeşil */
  }
  
  .form{
    text-decoration: none;
    color: rgb(52, 53, 54);
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

  .form:hover{
    color: rgb(73, 71, 71);
    transition: 0.5s;
    font-size: 16px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    text-decoration: underline;
}