.login-page {
    min-height: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.login-column {
    height: 100%;
    display: flex;
    align-items: stretch;
}

.login-promo {
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

/* Sadece lg breakpoint altında ortalama yapılacak */
@media (max-width: 991.98px) {
    .login-promo {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .login-promo-text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .login-container {
        padding-top: 0 !important;
    }

    .login-form-wrapper {
        padding-top: 2rem !important;
    }
}

.login-promo-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.login-promo-text {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 90%;
    padding-top: 0.5rem;
}

.promo-action {
    display: inline-flex;
    align-items: center;
    padding: 1rem 1.8rem;
    background-color: #f8f9fa;
    border: 2px dashed black;
    border-radius: 15px;
    text-decoration: none;
    color: #212529;
    font-weight: 500;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 0.8rem;
    gap: 1rem;
}

.promo-action.active {
    cursor: pointer;
    border: 2px dashed #28a745;
}

.promo-action.active:hover {
    background-color: #e9ecef;
    color: #212529;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.promo-action.inactive {
    cursor: default;
    pointer-events: none;
    opacity: 0.6;
    border: 2px dashed #dc3545;
}

.promo-action.inactive:hover {
    transform: none;
    box-shadow: none;
}

.profile-image {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.promo-action.active .profile-image {
    background-color: #28a745;
}

.promo-action.inactive .profile-image {
    background-color: #dc3545;
}

.login-container {
    width: 100%;
    height: 100%;
    padding: 2.5rem 2rem 2.5rem 2.6rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.login-form-wrapper {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    align-self: center;
}

.login-form-wrapper h4 {
    margin-bottom: 2rem;
}

.form-label {
    font-weight: 500;
    padding-left: 0.4rem;
}

.form-check {
    font-weight: 500;
    padding-left: 1.6rem;
}

.form-check-label {
    font-size: 0.9rem;
    color: #57595e;
}

.form-control {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    border: 1px solid #dee2e6;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    transition: border-color 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.form-control:focus {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.08);
    border-color: #86b7fe;
}

.btn-primary {
    padding: 1.1rem;
    border-radius: 10px;
    background-color: #e6f0ff;
    border: none;
    color: #0b5ed7;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    color: #fff;
}

.login-form-group {
    margin-bottom: 1rem;
}

.form-floating>label {
    font-size: 0.95rem;
}

.form-floating>.form-control {
    padding-top: 1.2rem;
}

.user-status-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-status-wrapper span {
    font-weight: 600;
    font-size: 0.9rem;
}

.user-status-wrapper.inactive span {
    color: #6c757d;
    /* Bootstrap'ın disabled text rengi */
    opacity: 0.65;
    /* Bootstrap'ın disabled opacity değeri */
}

.active-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-left: 8px;
    display: inline-block;
    position: relative;
}

.active-status.active {
    background-color: #28a745;
}

.active-status.active::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #28a745;
    animation: pulse 2s ease-in-out infinite;
}

.active-status.inactive {
    background-color: #dc3545;
}

.active-status.inactive::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #dc3545;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(4);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Validation hata mesajları için stil */
.invalid-feedback {
    margin-top: -1.8rem !important;
    margin-bottom: 1rem;
    position: relative;
    z-index: 5;
    font-size: 0.78rem !important;
    padding-left: 0.75rem;
    color: #dc3545;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.invalid-feedback.show {
    opacity: 1;
}

/* Form validation durumları için animasyonlar */
.is-invalid,
.is-valid {
    transition: background-image 0.4s ease-in-out,
        border-color 0.4s ease-in-out,
        box-shadow 0.4s ease-in-out !important;
}

/* Floating label ile çakışmaması için */
.form-floating>.invalid-feedback {
    margin-left: 1.2rem;
}

#forgotPassword {
    color: #0b5ed7;
    font-size: 0.9rem;
    font-weight: 500;
    padding-top: 0.1rem;
    cursor: pointer;
}