/* General Setup */
body.login-body {
    font-family: 'Inter', sans-serif;
    background-color: #F8FAFC !important;
    color: #1a1b22;
}

.login-container {
    max-width: 440px;
}

/* Typography & Colors */
.text-primary-dark {
    color: #002068;
}

.text-primary-link {
    color: #003399;
}

.text-secondary {
    color: #444653 !important;
}

/* Logo */
.logo-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

/* Custom Input Styling */
.input-group-custom {
    position: relative;
    display: flex;
    align-items: center;
}

.custom-input {
    padding-left: 45px !important;
    padding-right: 45px !important;
    border: 1px solid #c4c5d5;
    background-color: #faf8ff;
    font-size: 14px;
    border-radius: 8px;
}

.custom-input:focus {
    border-color: #003399;
    box-shadow: 0 0 0 3px rgba(0, 51, 153, 0.1);
}

.icon-left {
    position: absolute;
    left: 12px;
    color: #747684;
    font-size: 20px;
    pointer-events: none;
    z-index: 5;
}

.btn-icon-right {
    position: absolute;
    right: 12px;
    color: #747684;
    display: flex;
    align-items: center;
    padding: 0;
    z-index: 5;
    cursor: pointer;
}

.btn-icon-right:hover {
    color: #1a1b22;
}

/* Button Styling */
.btn-primary-custom {
    background-color: #003399;
    border: none;
    color: white !important;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-primary-custom:hover {
    background-color: #002068;
    color: white !important;
}

.btn-primary-custom:active {
    transform: scale(0.98);
}

/* Checkbox */
.form-check-input:checked {
    background-color: #003399;
    border-color: #003399;
}

/* Status Badge */
.status-badge {
    background-color: #eeedf6;
    border: 1px solid #c4c5d5;
    border-radius: 50px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
}

.status-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #444653;
}

.copyright-text {
    font-size: 10px;
    letter-spacing: 0.1em;
    color: #747684;
    text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .card-body {
        padding: 2rem !important;
    }
}
