input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #1d67cd inset; /* Arka plan rengini beyaz yapar */
    box-shadow: 0 0 0px 1000px #1d67cd inset;
    -webkit-text-fill-color: rgb(255, 255, 255); /* Metin rengini siyah yapar */
    transition: background-color 5000s ease-in-out 0s; /* Arka plan değişimini durdurur */
}


html, body {
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    
    background-color: #fff;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

.container {
    background-color: #1d67cd;
    border-radius: 10px;
    padding: 30px;
    margin-top: 5px;
    box-shadow: 0px 0px 10px rgba(20, 109, 16, 0.2);
    width: 800px; /* Genişlik 980px */
    height: 900px; /* Yükseklik 980px */
    display: flex;
    flex-direction: column;
    align-items: center; /* Yatayda ortalama */
    justify-content: center; /* Dikeyde ortalama */
    
}

h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 80px;
    font-weight: bold;
}



.form-group {
    margin-bottom: 20px;
}


label {
    font-size: 12px;
}

option {
    color: #ffcb05; /* Option metin rengini kırmızı yapar */
}

.formbold-input-flex {
    display: flex;
    gap: 20px;
    margin-bottom: 22px;
}

.formbold-input-flex > div {
    width: 50%;
    display: flex;
    flex-direction: column-reverse;
}

.formbold-form-input {
    width: 100%;
    padding-bottom: 5px;
    border: none;
    border-bottom: 1px solid #1d67cd;
    background: #1d67cd;
    font-size: 15px;
    color: #ffffff !important;
    outline: none;
    resize: none;
    font-weight: 300;
    border-width: 4px;
    padding-left: 20px;
    border-color: #ffffff;
    transition: border-width 0.1s ease, border-color 0.1s ease;
}

.formbold-form-input:hover,
.formbold-form-input:focus {
    border-color: #ff4040; /* Üzerine gelince kırmızı olacak */
    border-width: 1px;
}


.formbold-form-input::placeholder {
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 300;
}



.form-control {
    border: 1px solid #ffffff;
    border-radius: 5px;
    padding: 10px;
}

.btn-primary {
    background-color: #ffffff;
    border: none;
    width: 100%;
    height: 50px;
    border-radius: 0;
    padding: 10px 20px;
    color: #133c68;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #b4be22;
}


.admin-btn {
    background-color: #1d67cd;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    color: #1d67cd;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    top: 25px;
    left: 462px;
}

.a {
    width: 120px;
    height: 50px;
}
