* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: url('bg.jpg') no-repeat center center fixed;
    background-size: cover;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.250); /* Arka planı daha soluk yapmak için koyu bir katman */
    backdrop-filter: blur(2px); /* Hafif bulanıklık efekti */
    z-index: -1; /* Arka planda kalması için */
}
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;

}

.form-container {
    background-color: rgba(159, 159, 159, 0.407);
    border-radius: 10px;
    padding: 20px 150px;
    max-width: 850px;
    width: 94%;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.401);
    backdrop-filter: blur(8px);
}

.logo {
    max-width: 100px;
    margin-bottom: 20px;
}

h2 {
    color: white;
    margin-bottom: 100px;
}

label {
    display: block;
    text-align: left;
    color: white;
    font-size: 14px;
    margin-top: 10px;
}

.btn {
    flex: 1;
    padding: 12px;
    margin: 50px 0 15px 0;
    background-color: #00a2ff;
    border: none;
    width: 100%;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-size: 18px;
}


.btn:hover {
    background-color: #00a2ff;
}

footer {
    margin-top: 80px;
    font-size: 12px;
    color: white;
}
/* Renk değişkenleri */
:root {
    --primary: #008ecc;
    --secondary: #00a2ff;
  }
  
  .form__group {
    position: relative;
    padding: 15px 0 0;
    margin-top: 25px;
    width: 100%;
  }
  
  .form__field {
    font-family: inherit;
    width: 100%;
    border: 0;
    border-bottom: 2px solid var(--primary);
    outline: 0;
    font-size: 1.3rem;
    color: white;
    padding: 7px 0;
    background: transparent;
    transition: border-color 0.2s;
  }
  
  .form__field::placeholder {
    color: transparent;
  }
  
  .form__field:placeholder-shown ~ .form__label {
    font-size: 1.1rem;
    cursor: text;
    top: 15px;
  }
  
  .form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 0.75rem;
    color: rgba(220, 220, 220, 0.777);
  }
  
  .form__field:focus ~ .form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 0.75rem;
    color: rgb(188, 188, 188);
    font-weight: 700;
  }
  
  .form__field:focus {
    padding-bottom: 6px;
    font-weight: 700;
    border-width: 3px;
    border-image: linear-gradient(to right, var(--primary), var(--secondary));
    border-image-slice: 1;
  }
  
  .form__field:required,
  .form__field:invalid {
    box-shadow: none;
  }

  .toggle-btn {
    font-size: 1.2rem;
    padding: 10px 10px;
    background-color: transparent;
    border: none;
    border-radius: 12px;
    width: 250px;
    color: rgba(220, 220, 220, 0.777);
    cursor: pointer;
    border: 1px solid #00a2ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.picercon-con{
    display: flex;
    justify-content: space-between;
    margin-top: 45px;
}
.picercon{
    position: relative;
}
.time-picker {
    background-color: #0a2b35;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    text-align: center;
    position: absolute;
    z-index: 100;
    color: #fff;
    top:50px;
    left: 0;
}

.hidden {
    display: none;
}

.time-picker h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #b5c7c9;
}

.time {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #fff;
    margin: 25px 0;
}

.time div {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 5px;
}

.arrow {
    cursor: pointer;
    color: white;
    font-size: 1.2rem;
}

.buttons {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

button.cancel {
    background-color: transparent;
    color: #fff;
    padding: 8px 12px;
    border: 1px solid white;
    border-radius: 8px;
    cursor: pointer;
}

button.save {
    background-color: #00a2ff;
    color: #0a2b35;
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
@media screen and (max-width: 780px) {
    .form-container {
      padding: 10px 25px;
    }
    h2 {
        margin-bottom: 60px;
    }
    .picercon-con{
        flex-direction: column;
        gap: 30px ;
        justify-content: center;
        align-items: center;
    }

}
@media screen and (max-width: 1080px) {
    html,body{
        height: 100% !important;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}