.btn-primary {
    background-color: #1e40af;
    border-color: #1e40af;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
}

.text-primary {
    color: #1e40af !important;
}

.form-check-input:checked {
    background-color: #1e40af;
    border-color: #1e40af;
}

.form-check-input:focus {
    border-color: #1e40af;
    box-shadow: 0 0 0 0.2rem rgba(30, 64, 175, 0.25);
}

.form-control:focus {
    border-color: #1e40af;
    box-shadow: 0 0 0 0.2rem rgba(30, 64, 175, 0.25);
}

a {
    color: #1e40af;
}

a:hover {
    color: #1d4ed8;
}

.dssc-text {
    position: absolute;
    top: 10px;
    left: 20px;
    color: #1e40af;
    font-weight: bold;
    font-size: 1.2rem;
    opacity: 1;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: slideInFromLeft 2s ease-out forwards;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.dssc-logo {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 50%;
}

.login-container {
    position: relative;
}
