﻿/*//////////////////////////////////////////////////////////////////[ FONT ]*/
@font-face {
    font-family: Poppins-Regular;
    src: url('../fonts/poppins/poppins-regular.ttf') format('truetype');
}

@font-face {
    font-family: Poppins-Medium;
    src: url('../fonts/poppins/poppins-medium.ttf') format('truetype');
}

@font-face {
    font-family: Poppins-Bold;
    src: url('../fonts/poppins/poppins-bold.ttf') format('truetype');
}

@font-face {
    font-family: Poppins-SemiBold;
    src: url('../fonts/poppins/poppins-semibold.ttf') format('truetype');
}

@font-face {
    font-family: Montserrat-Bold;
    src: url('../fonts/montserrat/montserrat-bold.ttf') format('truetype');
}

@font-face {
    font-family: Montserrat-SemiBold;
    src: url('../fonts/montserrat/montserrat-semibold.ttf') format('truetype');
}

@font-face {
    font-family: Montserrat-Regular;
    src: url('../fonts/montserrat/montserrat-regular.ttf') format('truetype');
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body, html {
    height: 100%;
    font-family: Poppins-Regular, sans-serif;
}
.limiter {
    width: 100%;
    margin: 0 auto;
}
.container-login100 {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: #f2f2f2;
}
.wrap-login100 {
    width: 100%;
    background: #fff;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    flex-direction: row-reverse;
}

/*==================================================================[ login more ]*/
.login100-more {
    width: calc(100% - 560px);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}
.login100-more::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.1);
}

/*==================================================================[ Form ]*/

.login100-form {
    width: 560px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f7f7f7;
    padding: 90pt 50pt 0 50pt;
    box-sizing: border-box;
}
.login100-form-title {
    width: 100%;
    display: block;
    font-family: Poppins-Regular;
    font-size: 30px;
    color: #333333;
    line-height: 1.2;
    text-align: center;
}

.wrap-footer {
    text-align: center;
    font-size: 11pt;
    font-weight: 900;
    color: black;
    margin: auto auto 5pt auto;
}

/*------------------------------------------------------------------[ Responsive ]*/
@media (max-width: 992px) {
    .login100-form {
        width: 50%;
        padding-left: 30px;
        padding-right: 30px;
    }
    .login100-more {
        width: 50%;
    }
}
@media (max-width: 768px) {
    .login100-form {
        width: 100%;
    }
    .login100-more {
        display: none;
    }
}
@media (max-width: 576px) {
    .login100-form {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 70px;
    }
}

/*==================================================================[ Social ]*/
.login100-form-social-item {
    width: 36px;
    height: 36px;
    font-size: 18px;
    color: #fff;
    border-radius: 50%;
}
.login100-form-social-item:hover {
    background: #333333;
    color: #fff;
}

/*[Dil Seçim]*/
.combo-flag {
    width: 20pt;
    height: 20pt;
    margin-right: 8px;
    vertical-align: middle;
}

.combo-text {
    font-size: 12pt;
    display: inline-table;
}

/*------------------------------------------------------------------[ Input ]*/

.wrap-input100 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    width: 100%;
    position: relative;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    margin-bottom: 10px;
}

/*==================================================================
[ Restyle Checkbox ]*/

.input-checkbox100 {
    display: none;
}

.label-checkbox100 {
    font-family: Poppins-Regular;
    font-size: 13px;
    color: #999999;
    line-height: 1.4;
    display: block;
    position: relative;
    padding-left: 26px;
    cursor: pointer;
}

.label-checkbox100::before {
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 13px;
    color: transparent;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 2px;
    background: #fff;
    border: 1px solid #6675df;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.input-checkbox100:checked + .label-checkbox100::before {
    color: #6675df;
}
.txt1 {
    font-family: Montserrat-Regular;
    font-size: 13px;
    line-height: 1.4;
    color: #555555;
}

/*------------------------------------------------------------------[ Button ]*/
.container-login100-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.login100-form-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    background: #6675df;
    font-family: Montserrat-Bold;
    font-size: 12px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.login100-form-btn:hover {
    background: #333333;
}

.k-dropdown-wrap{
    border-radius: 15pt;
}

/*Buton Giris*/
button {
    outline: none !important;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

iframe {
    border: none !important;
}

.login-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 7pt 15pt;
    background: #3f57c9;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 11pt;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    width: 45%;
    max-width: 400px;
    margin-top: 25px;
    box-shadow: 0 4px 15px rgba(78, 7, 39, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.login-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #223072;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.edevlet-button {
    background: #d11b22;
}

.edevlet-button::before {
    background: #97161b;
}

.login-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(78, 7, 39, 0.4);
}

.login-button:hover::before {
    opacity: 1;
}

.login-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(78, 7, 39, 0.4);
}

.login-button .button-text {
    transition: transform 0.3s ease;
}

.login-button:hover .button-text {
    transform: translateX(5px);
}
/* Uçak İkon Animasyonu */
.login-button .button-icon {
    display: flex;
    align-items: center;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1); /* 0.6s -> 0.2s (0.3x hız) */
}

.login-button:hover .button-icon {
    transform: translateX(10px) rotate(45deg) scale(1.2);
    animation: fly 0.3s ease-in-out infinite alternate; /* 0.8s -> 0.3s (0.3x hız) */
}
/* Mavi Uçak Efekti */
.login-button svg {
    transition: all 0.1s ease; /* 0.3s -> 0.1s (0.3x hız) */
    fill: #82c8fc; /* Beyaz yerine direkt mavi */
    filter: drop-shadow(0 0 2px rgba(130, 200, 252, 0.7));
}

.login-button:hover svg {
    fill: #82c8fc;
    filter: drop-shadow(0 0 5px rgba(130, 200, 252, 0.9)) drop-shadow(0 0 10px rgba(130, 200, 252, 0.5));
    animation: pulse-blue 0.5s infinite alternate; /* Ek puls efekti */
}
/* Buton Hover Efekti (Hızlandırılmış) */
.login-button:hover {
    transition-duration: 0.2s; /* 0.4s -> 0.2s */
}

.login-button:hover::before {
    transition-duration: 0.2s; /* 0.4s -> 0.2s */
}

/*Dropdown Menü*/
.dropdown{
    width:100% !important;
}
.button-group-dropdown .dropdown {
    display: inline-block;
    position: relative;
}

.dropdown-toggle-button {
    width: 95%;
    height: 35pt;
    background: #6675df;
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 15pt;
    transition: 0.3s;
    font-size: 11pt;
    font-weight: 600;
}

.dropdown-toggle-button:hover {
  background: #333333;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    background-color: #ffffff;
    border-radius: 8px;
    min-width: 180px;
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 50;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background-color: #f3f4f6;
}

.cf-turnstile {
    width: 100%;
}

.kvkk-button {
    margin: 0pt auto;
    width: 25%;
    display: block;
    align-items: center;
    text-align: center;
    font-size: 10pt;
    font-weight: 900;
    cursor: pointer;
}