﻿/* Login Page Custom Styles */
main {
    display: flex;
    justify-content: center;
    align-items: center;
}



.login-bg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10em;
}
.login-title {
    color: #4cc6ff;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}
.login-card {
    background: #120a18;
    border-radius: 40px;
    padding: 48px 32px 32px 32px;
    width: 45rem;
    margin: 0 auto;
    box-shadow: 0 0 40px 0 #00000040;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.login-label {
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 16px;
    align-self: flex-start;
}
.form-label {
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 16px;
    align-self: flex-start;
}
.form-check-label {
    color: #fff;
    font-weight: 600;
}
.login-input {
    width: 350px;
    max-width: 100%;
    border-radius: 24px;
    border: none;
    padding: 14px 20px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    background: #fff;
}
.login-links {
    display: flex;
    align-items:center;
    justify-content: space-between;
    max-width: 100%;
}
.login-link {
    color: #fff;
    font-size: 0.98rem;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s;
}
.login-link:hover {
    color: #4cc6ff;
}
.login-btn {
    background: #4cc6ff;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 24px;
    padding: 12px 40px;
    font-size: 1.2rem;
    margin-top: 16px;
    transition: background 0.2s;
}
.login-btn:hover {
    background: #259ecb;
    color: #fff;
}
.login-register {
    color: #fff;
    text-align: center;
    margin-top: 24px;
    font-size: 1.05rem;
}
.login-register a {
    color: #4cc6ff;
    text-decoration: underline;
    margin-left: 6px;
    font-weight: 600;
}
.login-register a:hover {
    color: #02BFFF;
    transition: color 0.3s;
}
@media (max-width: 575px) {
    .login-card{
        width: 90%
    }
}

/* Select2 Dark Theme Override */
.select2-container--bootstrap5 .select2-dropdown {
    background-color: #fff; /* Koyu arkaplan */
    border: 1px solid #323248;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.select2-container--bootstrap5 .select2-search--dropdown .select2-search__field {
    background-color: #2b2b40; /* Arama kutusu arkaplanı */
    color: #fff; /* Arama kutusu metin rengi */
    border: 1px solid #323248;
}

.select2-container--bootstrap5 .select2-results__option {
    color: #a7a8aa; /* Seçenek metin rengi */
    padding: 8px 12px;
}

.select2-container--bootstrap5 .select2-results__option--highlighted {
    background-color: #02BFFF; /* Vurgulanan seçenek arkaplanı */
    color: #fff; /* Vurgulanan seçenek metin rengi */
}

.select2-container--bootstrap5 .select2-results__option[aria-selected=true] {
    background-color: #2b2b40; /* Seçilmiş seçenek arkaplanı */
    color: #fff;
}