html, body {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 350px;
    background: #F8F9FD;
    background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(244, 247, 251) 100%);
    border-radius: 40px;
    padding: 25px 35px;
    border: 5px solid rgb(255, 255, 255);
    box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 30px 30px -20px;
    margin: 20px;

  }

  /* Resmin bir kapsayıcıda ortalanması */
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;


}

img {
    max-width: 100%;
    height: auto;
}

/* Resmin belirli bir boyutunu ayarlamak istiyorsan */
.image-container img {
    width: 300px; /* Örnek genişlik */
    height: auto; /* Orantılı yükseklik */
}



  .heading {
    text-align: center;
    font-weight: 900;
    font-size: 30px;
    color: rgb(16, 137, 211);
  }
  
  form {
    margin-top: 20px;
  }
  
  form .input {
    width: 87%;
    background: white;
    border: none;
    padding: 15px 20px;
    border-radius: 20px;
    margin-top: 15px;
    box-shadow: #cff0ff 0px 10px 10px -5px;
    border-inline: 2px solid transparent;
  }
  
  form .input::-moz-placeholder {
    color: rgb(170, 170, 170);
  }
  
  form .input::placeholder {
    color: rgb(170, 170, 170);
  }
  
  form .input:focus {
    outline: none;
    border-inline: 2px solid #12B1D1;
  }
  

  
  form .login-button {
    display: block;
    width: 100%;
    font-weight: bold;
    background: linear-gradient(45deg, rgb(233 16 16) 0%, rgb(185 0 0) 100%);
    color: white;
    padding-block: 15px;
    margin: 20px auto;
    border-radius: 20px;
    box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 20px 10px -15px;
    border: none;
    transition: all 0.2s ease-in-out;
  }
  
  form .login-button:hover {
    transform: scale(1.03);
    box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 23px 10px -20px;
  }
  
  form .login-button:active {
    transform: scale(0.95);
    box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 15px 10px -10px;
  }

.title{
    font-family:Arial;
    font-size:12px; 
}