@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
    margin: 0;
    padding: 0;
    background: url(https://plus.unsplash.com/premium_photo-1674235766088-80d8410f9523?q=80&w=2069&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D) no-repeat center center fixed;
    background-size: cover;
    font-family: "Playfair Display", serif;
    width: 100%;
    height: 100vh;
}

.bg{
    width: 100%;
    height: 100%;
    background: #f3ece4c7;
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.form {
    display: flex;
    flex-direction: column;
    width: 350px;
    background-color: #f3ece4c7;
    padding: 20px;
    border-radius: 20px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;  }
  
  .title {
    font-size: 28px;
    color: #4d6061;
    font-weight: 600;
    letter-spacing: -1px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
  }
  
  .title::before,.title::after {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    border-radius: 50%;
    left: 0px;
    background-color: #4d6061;
  }
  
  .title::before {
    width: 18px;
    height: 18px;
    background-color: #4d6061;
  }
  
  .title::after {
    width: 18px;
    height: 18px;
    animation: pulse 1s linear infinite;
  }
  
  .message, .signin {
    color: rgba(88, 87, 87, 0.822);
    font-size: 14px;
  }
  
  .signin {
    text-align: center;
  }
  
  .signin a {
    color: #4d6061;
  }
  
  .signin a:hover {
    text-decoration: underline #4d6061;
  }
  
  .flex {
    display: flex;
    width: 100%;
    gap: 6px;
  }
  
  .form label {
    position: relative;
  }
  
  .form label .input {
    width: 96%;
    height: 5vh;
    outline: 0;
    background: linear-gradient(90deg, #ffffff, #f3ece400);
    border: none;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    padding-left:10px; /* Yazıyı sola kaydırır */
}

  .form label input{
    align-items: center;
    display: flex;
    
  }
  
  .form label .input + span {
    position: absolute;
    left: 10px;
    top: 15px;
    color: grey;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
  }
  
  .form label .input:placeholder-shown + span {
    top: 13px;
    font-size: 0.9em;
  }
  
  .form label .input:focus + span,.form label .input:valid + span {
    top: 2px;
    font-size: 0.7em;
    font-weight: 600;
  }
  
  .form label .input:focus + span,
  .form label .input.has-text + span {
    top: 3px;
    font-size: 0.7em;
    font-weight: 600;
    color: #4d6061;
  }
  
  .submit {
    border: none;
    outline: none;
    background-color: #4d6061;
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transform: .3s ease;
    
  }
  
  .submit:hover {
    background-color: rgb(56, 69, 70)
  }
  
  @keyframes pulse {
    from {
      transform: scale(0.9);
      opacity: 1;
    }
  
    to {
      transform: scale(1.8);
      opacity: 0;
    }
    
  }

  .created{
    position: absolute;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    bottom: 10px;
    text-decoration: none;
    color: #4d6061;
}

.created a{
    text-decoration: none;
    font-weight: bold;
    background: -webkit-linear-gradient(49deg, rgba(98,34,204,1) 0%, rgb(128, 49, 253) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block; /* Metnin arka planın tamamını almasını sağlamak için */
}