.login-center {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-wrapper {
    width: 150px;
    margin-bottom:50px;
}

    .logo-wrapper img {
        width: 100%;
        height: auto;
        object-fit: contain;
        filter: drop-shadow(0 8px 18px rgba(0,0,0,0.08));
    }

.custom-input {
    border: 1px solid #f1f1f1 !important;
    background-color: #fafafa !important;
    padding: 0.9rem 1rem !important;
    border-radius: 12px !important;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .custom-input:focus {
        border-color: #1a237e !important;
        background-color: #fff !important;
    }

.btn-primary-custom {
    background-color: #1a237e !important;
    color: white !important;
    border-radius: 12px !important;
    border: none;
    transition: all 0.25s ease;
}

    .btn-primary-custom:hover {
        background-color: #0d1240 !important;
        transform: translateY(-2px);
    }
