/* Popup Overlay */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
   
}

/* Popup İçeriği */
.popup-content {
    background: #05444c;
    padding: 60px;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    position: relative;
    color: white;
    animation: slideIn 0.3s ease forwards;
}

/* Kapat Butonu */
.close-btn {
    position: absolute;
    top: 50px;
    right: 60px;
    font-size: 40px;
    cursor: pointer;
    color: white;
}

/* Başlık */
.popup-content h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    border-bottom: white 1px solid;
    line-height: 50px;
    color: white;
}

/* Form Stilleri */
form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
    align-items: center;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group label {
    font-size: 14px;
}

select option {
  color: black; /* Dropdown'daki yazı rengi siyah */
  background-color: white; /* Dropdown arka planı beyaz */
}

.form-group ::placeholder {
  color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 8px;
    border: none;
    border-bottom: 1px solid white;
    background: transparent;
    color: white;
    font-size: 14px;
    line-height: 27px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
}

.form-group textarea {
    resize: none;
}

/* Checkbox Stili */
.form-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    color: transparent;
    background-color: transparent;
}

.consent-label {
    font-size: 12px;
    display: inline;
}
label {
   margin-bottom: 0px !important; 

}

/* Gönder Butonu */
.submit-btn {
    background-color: #d2bb72;
    width: 150px;
    color: white;
    border: none;
    padding: 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #0075a8;
}

/* Animasyon */
@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-50px);
        opacity: 0;
    }
}

/* iOS için özel input stilleri */
input[type="date"],
input[type="time"],
select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-color: #222; /* Gözükmesi için */
    color: white;
    padding: 10px !important;
    border-radius: 5px !important;
}

/* Select için ok simgesi eklerseniz: */
select {
    background-image: url("data:image/svg+xml;charset=US-ASCII,<svg%20...%20/>");
    background-repeat: no-repeat;
    background-position: right 0.7em top 50%;
    background-size: 1em auto;
}


/* iOS Safari için özel düzeltme */
input[type="text"]#date-picker {
  -webkit-appearance: none !important;
  appearance: none !important;
}

/* Flatpickr takvim z-index */
.flatpickr-calendar {
  z-index: 9999 !important;
}

.form-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    color: transparent;
    background-color: transparent;
}
@media only screen and (max-width: 767px){
    .form-row {
    display: grid;
    gap: 20px;
    align-items: center;
}
    }

