.login-promo .bg-video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
    z-index: 1;
}

.login-promo .bg-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .9;
    z-index: 2;
}

.login-promo .login-promo-content {
    z-index: 3;
}

#kt_customers_table .details-control {
    cursor: pointer;
}

#kt_customers_table .hidden-row {
    background-color: #f9f9f9;
}

#kt_customers_table .hidden-row td:first-child {
    padding-left: 2.5rem !important;
}

#kt_customers_table .collapse-icon {
    transition: transform 0.3s;
}

#kt_customers_table .collapse-icon.ki-down {
    transform: rotate(90deg);
}

#kt_customers_table tr[data-parent_id] {
    transition: all 0.3s ease;
    opacity: 1;
}

#kt_customers_table tr[data-parent_id].hidden-row {
    opacity: 0;
    transform: translateX(10px);
    display: none;
}

#select_parent_customer {
    display:flex;
    display: none ;
}
#login-section {
    position: relative;
    width: 100%;
    height: 100vh;
}

#login-section * {
    font-family: 'Outfit', sans-serif !important;
}

#login-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(40, 42, 54);
    background: -moz-linear-gradient(35deg, rgba(40, 42, 54, 1) 0%, rgba(40, 42, 54, 1) 45%, rgba(40, 42, 57, 0.773546918767507) 100%);
    background: -webkit-linear-gradient(35deg, rgba(40, 42, 54, 1) 0%, rgba(40, 42, 54, 1) 45%, rgba(40, 42, 57, 0.773546918767507) 100%);
    background: linear-gradient(35deg, rgba(40, 42, 54, 1) 0%, rgba(40, 42, 54, 1) 45%, rgba(40, 42, 57, 0.773546918767507) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#282a36", endColorstr="#282a39", GradientType=1);
    z-index: 2;
}

#login-section video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}


#login-section .login-interact {
    position: relative;
    z-index: 3;
}

#login-section .login-form-holder {
    height: 100vh
}

#login-section .login-form-holder #login-form {
    margin-top: 5rem
}


#login-section .login-title .upper-title {
    font-size: 2rem;
    font-weight: 200;
    color: #5C6077;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

#login-section .login-title h1 {
    font-size: 5rem;
    font-weight: bolder;
    color: #fff;
    letter-spacing: 0.1rem;
}

#login-section .login-title p {
    font-size: 1.25rem;
    font-weight: 200;
    color: #5C6077;
    letter-spacing: 0.1rem;
}


#login-section .login-title h1 span {
    color: #1A90F8;
}


#login-section .form-group {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    min-width: 340px;
}

#login-section .form-group input {
    width: 100%;
    padding: 20px 15px 10px;
    background: #3C4051;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    outline: none;
}

#login-section .form-group label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #5C6077;
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 16px;
    z-index: 1;
}

#login-section .form-group input:focus+label,
#login-section .form-group input:not(:placeholder-shown)+label {
    top: 30%;
    font-size: 12px;
    background: transparent;
    padding: 0;
}

#login-section .form-group input::placeholder {
    color: transparent;
}

/* Validasyon mesajları için stil */
#login-section .fv-plugins-message-container {
    position: absolute;
    left: 0;
    bottom: -20px;
    font-size: 12px;
    color: #f1416c;
}

#login-section .fv-plugins-message-container .fv-help-block {
    margin: 0;
    padding: 0;
}

/* Form grubu için ek margin */
#login-section .form-group.fv-row {
    margin-bottom: 30px;
}

#login-section .form-group.remember-me {
    display: flex;
    align-items: center;
    gap: 10px;
    /*margin-top: 35px;*/
}

#login-section .form-group.remember-me input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: #3C4051;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    padding: 0;
}

#login-section .form-group.remember-me input[type="checkbox"]:checked {
    background: #3699FF;
}

#login-section .form-group.remember-me input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#login-section .form-group.remember-me label {
    position: static;
    transform: none;
    cursor: pointer;
    font-size: 14px !important;
    color: white;
    pointer-events: all;
}

#login-section .password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #5C6077;
}

#login-section #login-form button {
    width: 100%;
    padding: 15px 30px;
    background: #3699FF;
    color: white;
    border: none;
    border-radius: 33px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    transition: all 0.3s ease;
}

#login-section #login-form button:hover {
    background: #1f82e6;
}

#login-section #login-form button::after {
    content: '';
    width: 40px;
    height: 40px;
    background-image: url(../../assets/right-circle.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 9px;
}

#login-section .login-logo {
    position: absolute;
    right: 5%;
    bottom: 10%;
    z-index: 4;
    max-height: 100px;
}

@media(max-width: 992px) {
    #login-section .login-logo {
        bottom: 10px;
        width: 150px;
        left: calc(50% - 75px);
    }
}

@media(max-width: 768px) {
    #login-section .login-form-holder #login-form {
        width: 100%;
    }
}

@media(max-width: 576px) {
    #login-section .login-logo {
        width: 80px;
        left: calc(50% - 40px);
    }
    #login-section .login-form-holder #login-form {
        width: 100%;
    }

    #login-section .form-group {
        min-width: unset;
    }

    .login-form-holder {
        padding: 0px 30px;
    }
}

.img-container:hover{
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.19)
}

#clearBtn:focus:not(.btn-active),
#clearBtn:focus:not(.btn-active) > *,
#clearBtn:hover,
#clearBtn:hover > * {
    color : white !important
}

.fc .fc-popover{ z-index: 9 !important;}